library(tidyverse)
library(mice)
library(skimr)
library(corrplot)
library(car)
library(ISLR)
library(ggplot2)
library(gridExtra)
library(SamplingStrata)

Objective 1:

Question of Interest: what variables are used to predict price of a NYC Airbnb

nycraw <- read.csv("https://raw.githubusercontent.com/JaclynCoate/6372_Project/master/AB_NYC_2019.csv", header = TRUE, strip.white=TRUE)
head(nycraw)
##     id                                             name host_id
## 1 2539               Clean & quiet apt home by the park    2787
## 2 2595                            Skylit Midtown Castle    2845
## 3 3647              THE VILLAGE OF HARLEM....NEW YORK !    4632
## 4 3831                  Cozy Entire Floor of Brownstone    4869
## 5 5022 Entire Apt: Spacious Studio/Loft by central park    7192
## 6 5099        Large Cozy 1 BR Apartment In Midtown East    7322
##     host_name neighbourhood_group neighbourhood latitude longitude
## 1        John            Brooklyn    Kensington 40.64749 -73.97237
## 2    Jennifer           Manhattan       Midtown 40.75362 -73.98377
## 3   Elisabeth           Manhattan        Harlem 40.80902 -73.94190
## 4 LisaRoxanne            Brooklyn  Clinton Hill 40.68514 -73.95976
## 5       Laura           Manhattan   East Harlem 40.79851 -73.94399
## 6       Chris           Manhattan   Murray Hill 40.74767 -73.97500
##         room_type price minimum_nights number_of_reviews last_review
## 1    Private room   149              1                 9  2018-10-19
## 2 Entire home/apt   225              1                45  2019-05-21
## 3    Private room   150              3                 0            
## 4 Entire home/apt    89              1               270  2019-07-05
## 5 Entire home/apt    80             10                 9  2018-11-19
## 6 Entire home/apt   200              3                74  2019-06-22
##   reviews_per_month calculated_host_listings_count availability_365
## 1              0.21                              6              365
## 2              0.38                              2              355
## 3                NA                              1              365
## 4              4.64                              1              194
## 5              0.10                              1                0
## 6              0.59                              1              129
str(nycraw)
## 'data.frame':    48895 obs. of  16 variables:
##  $ id                            : int  2539 2595 3647 3831 5022 5099 5121 5178 5203 5238 ...
##  $ name                          : Factor w/ 47895 levels ""," Private 1 bdrm Lefferts Gr, BK apt",..: 12565 38008 45007 15583 19210 24843 8252 24890 15478 17564 ...
##  $ host_id                       : int  2787 2845 4632 4869 7192 7322 7356 8967 7490 7549 ...
##  $ host_name                     : Factor w/ 11453 levels "","​ Valéria",..: 4997 4791 2913 6210 5929 1938 3549 9649 6880 1235 ...
##  $ neighbourhood_group           : Factor w/ 5 levels "Bronx","Brooklyn",..: 2 3 3 2 3 3 2 3 3 3 ...
##  $ neighbourhood                 : Factor w/ 221 levels "Allerton","Arden Heights",..: 109 128 95 42 62 138 14 96 203 36 ...
##  $ latitude                      : num  40.6 40.8 40.8 40.7 40.8 ...
##  $ longitude                     : num  -74 -74 -73.9 -74 -73.9 ...
##  $ room_type                     : Factor w/ 3 levels "Entire home/apt",..: 2 1 2 1 1 1 2 2 2 1 ...
##  $ price                         : int  149 225 150 89 80 200 60 79 79 150 ...
##  $ minimum_nights                : int  1 1 3 1 10 3 45 2 2 1 ...
##  $ number_of_reviews             : int  9 45 0 270 9 74 49 430 118 160 ...
##  $ last_review                   : Factor w/ 1765 levels "","2011-03-28",..: 1503 1717 1 1762 1534 1749 1124 1751 1048 1736 ...
##  $ reviews_per_month             : num  0.21 0.38 NA 4.64 0.1 0.59 0.4 3.47 0.99 1.33 ...
##  $ calculated_host_listings_count: int  6 2 1 1 1 1 1 1 1 4 ...
##  $ availability_365              : int  365 355 365 194 0 129 0 220 0 188 ...

EDA to determine type of multiple linear regression to perform

Removing logically irrelevant variables

#Dropping logical irrelevant variables: "id", "name", "host_id", "host_name", "last_reiview", "latitude", "longitude", "neighborhood","availability_365"
nyc2 <- select(nycraw, -c("id", "name", "host_id", "host_name", "last_review", "latitude", "longitude", "neighbourhood","availability_365"))
head(nyc2)
##   neighbourhood_group       room_type price minimum_nights
## 1            Brooklyn    Private room   149              1
## 2           Manhattan Entire home/apt   225              1
## 3           Manhattan    Private room   150              3
## 4            Brooklyn Entire home/apt    89              1
## 5           Manhattan Entire home/apt    80             10
## 6           Manhattan Entire home/apt   200              3
##   number_of_reviews reviews_per_month calculated_host_listings_count
## 1                 9              0.21                              6
## 2                45              0.38                              2
## 3                 0                NA                              1
## 4               270              4.64                              1
## 5                 9              0.10                              1
## 6                74              0.59                              1

Dependent Variable Check

  • Checking on dependent variable range to make sure if there are zero’s to remove. It would not be free to stay in NYC.
nyc2 <- nyc2[!(nyc2$price==0),]
invisible(view(nyc2))

NA Evaluation and Drop

#Checking for NAs
md.pattern(nyc2)

##       neighbourhood_group room_type price minimum_nights number_of_reviews
## 38833                   1         1     1              1                 1
## 10051                   1         1     1              1                 1
##                         0         0     0              0                 0
##       calculated_host_listings_count reviews_per_month      
## 38833                              1                 1     0
## 10051                              1                 0     1
##                                    0             10051 10051
nrow(nyc2)
## [1] 48884
#Drop NAs that are present
nyc3 <- na.omit(nyc2)
#Confirming NA drop
nrow(nyc3)
## [1] 38833

Zero variance variable check - all show variance so remain in model

#Results show no zero variance variables, leave in all
skim(nyc3)
## Skim summary statistics
##  n obs: 38833 
##  n variables: 7 
## 
## ── Variable type:factor ───────────────────────────────────────────────────────────────────────────────────────
##             variable missing complete     n n_unique
##  neighbourhood_group       0    38833 38833        5
##            room_type       0    38833 38833        3
##                                   top_counts ordered
##  Man: 16632, Bro: 16438, Que: 4574, Bro: 875   FALSE
##      Ent: 20331, Pri: 17658, Sha: 844, NA: 0   FALSE
## 
## ── Variable type:integer ──────────────────────────────────────────────────────────────────────────────────────
##                        variable missing complete     n   mean     sd p0
##  calculated_host_listings_count       0    38833 38833   5.16  26.3   1
##                  minimum_nights       0    38833 38833   5.87  17.39  1
##               number_of_reviews       0    38833 38833  29.3   48.19  1
##                           price       0    38833 38833 142.35 196.96 10
##  p25 p50 p75  p100     hist
##    1   1   2   327 ▇▁▁▁▁▁▁▁
##    1   2   4  1250 ▇▁▁▁▁▁▁▁
##    3   9  33   629 ▇▁▁▁▁▁▁▁
##   69 101 170 10000 ▇▁▁▁▁▁▁▁
## 
## ── Variable type:numeric ──────────────────────────────────────────────────────────────────────────────────────
##           variable missing complete     n mean   sd   p0  p25  p50  p75
##  reviews_per_month       0    38833 38833 1.37 1.68 0.01 0.19 0.72 2.02
##  p100     hist
##  58.5 ▇▁▁▁▁▁▁▁

Storing all categorical variables as factors

#Storing categorical variables as factors
skim(nyc3)
## Skim summary statistics
##  n obs: 38833 
##  n variables: 7 
## 
## ── Variable type:factor ───────────────────────────────────────────────────────────────────────────────────────
##             variable missing complete     n n_unique
##  neighbourhood_group       0    38833 38833        5
##            room_type       0    38833 38833        3
##                                   top_counts ordered
##  Man: 16632, Bro: 16438, Que: 4574, Bro: 875   FALSE
##      Ent: 20331, Pri: 17658, Sha: 844, NA: 0   FALSE
## 
## ── Variable type:integer ──────────────────────────────────────────────────────────────────────────────────────
##                        variable missing complete     n   mean     sd p0
##  calculated_host_listings_count       0    38833 38833   5.16  26.3   1
##                  minimum_nights       0    38833 38833   5.87  17.39  1
##               number_of_reviews       0    38833 38833  29.3   48.19  1
##                           price       0    38833 38833 142.35 196.96 10
##  p25 p50 p75  p100     hist
##    1   1   2   327 ▇▁▁▁▁▁▁▁
##    1   2   4  1250 ▇▁▁▁▁▁▁▁
##    3   9  33   629 ▇▁▁▁▁▁▁▁
##   69 101 170 10000 ▇▁▁▁▁▁▁▁
## 
## ── Variable type:numeric ──────────────────────────────────────────────────────────────────────────────────────
##           variable missing complete     n mean   sd   p0  p25  p50  p75
##  reviews_per_month       0    38833 38833 1.37 1.68 0.01 0.19 0.72 2.02
##  p100     hist
##  58.5 ▇▁▁▁▁▁▁▁

Checking for Multicollinearity

  • Multicollinearity will weaken the model
    • number_of_reviews and reviews_per_month are correlated at 55%
      • Removing reviews_per_month
corrNYC <- nyc3
#Table numeric variables
corrNYCTable <- corrNYC %>% keep(is.numeric) %>% cor %>% view
#Plot numeric variables v numeric variables
corrNYC %>% keep(is.numeric) %>% cor %>% corrplot("upper", addCoef.col = "white", number.digits = 2, number.cex = 0.5, method="square", order="hclust", tl.srt=45, tl.cex = 0.8)

invisible(view(corrNYCTable))
#Removing reviews_per_month due to high correlation of is and number_of_reviews
nyc4 <- select(nyc3, -c("reviews_per_month"))

Summary Review of Data Set

summary(nyc4)
##     neighbourhood_group           room_type         price        
##  Bronx        :  875    Entire home/apt:20331   Min.   :   10.0  
##  Brooklyn     :16438    Private room   :17658   1st Qu.:   69.0  
##  Manhattan    :16632    Shared room    :  844   Median :  101.0  
##  Queens       : 4574                            Mean   :  142.4  
##  Staten Island:  314                            3rd Qu.:  170.0  
##                                                 Max.   :10000.0  
##  minimum_nights     number_of_reviews calculated_host_listings_count
##  Min.   :   1.000   Min.   :  1.0     Min.   :  1.000               
##  1st Qu.:   1.000   1st Qu.:  3.0     1st Qu.:  1.000               
##  Median :   2.000   Median :  9.0     Median :  1.000               
##  Mean   :   5.868   Mean   : 29.3     Mean   :  5.165               
##  3rd Qu.:   4.000   3rd Qu.: 33.0     3rd Qu.:  2.000               
##  Max.   :1250.000   Max.   :629.0     Max.   :327.000

Removing outliers from minimum nights stay

  • Anything over 365 is more than a year and would be improbable
  • Removing any minimum nights metric over 365
nyc4 <- nyc4[!(nyc4$minimum_nights > 365),]
invisible(view(nyc4))

Examining VIFs

  • The below results show us there is no need to remove any variables
full.model<-lm(price~.,data=nyc4)  # . means all variable not mpg
vif(full.model)[,3]^2
##            neighbourhood_group                      room_type 
##                       1.010573                       1.017568 
##                 minimum_nights              number_of_reviews 
##                       1.024385                       1.011797 
## calculated_host_listings_count 
##                       1.027540
alias(lm(price~.,data=nyc4))
## Model :
## price ~ neighbourhood_group + room_type + minimum_nights + number_of_reviews + 
##     calculated_host_listings_count

Reviewing Linearity with Numeric Variables

  • Curved relationships with the numeric variables
    • Could require a quadratic or logarithmic transformation
nyc4 %>% pairs()

par(mfrow=c(2,2))
plot(full.model)

Creating new Log price variable

  • Based on the above plots we may benefit from a transformation
    • Log transforming price to create a log-linear regression
log.nyc <- nyc4 %>% mutate(lprice=log(price))
log.nyc <- select(log.nyc, -c("price"))
invisible(log.nyc)

Examining VIFs of Log Price Variable

log.full.model<-lm(lprice~.,data=log.nyc)  # . means all variable not mpg
vif(log.full.model)[,3]^2
##            neighbourhood_group                      room_type 
##                       1.010573                       1.017568 
##                 minimum_nights              number_of_reviews 
##                       1.024385                       1.011797 
## calculated_host_listings_count 
##                       1.027540
alias(lm(lprice~.,data=log.nyc))
## Model :
## lprice ~ neighbourhood_group + room_type + minimum_nights + number_of_reviews + 
##     calculated_host_listings_count

Reviewing Linearity with Independent and Logged Dependent (Price) Variables

  • Curved relationships with the numeric variables
    • Could require a quadratic or logarithmic transformation
log.nyc  %>% pairs() #[Add color]

#%>% keep(is.numeric)
par(mfrow=c(2,2))
plot(log.full.model)

Log-log model

  • Due to lack of linearity trying to transform the independent variables to see if we can surface a linear relationship
log.nyc.independent <- log.nyc %>% mutate(lreviews=log(number_of_reviews))
log.nyc.independent <- log.nyc.independent %>% mutate(lnights=log(minimum_nights))
log.nyc.independent <- log.nyc.independent %>% mutate(llistings=log(calculated_host_listings_count))
log.nyc.independent
##       neighbourhood_group       room_type minimum_nights number_of_reviews
## 1                Brooklyn    Private room              1                 9
## 2               Manhattan Entire home/apt              1                45
## 3                Brooklyn Entire home/apt              1               270
## 4               Manhattan Entire home/apt             10                 9
## 5               Manhattan Entire home/apt              3                74
## 6                Brooklyn    Private room             45                49
## 7               Manhattan    Private room              2               430
## 8               Manhattan    Private room              2               118
## 9               Manhattan Entire home/apt              1               160
## 10              Manhattan Entire home/apt              5                53
## 11              Manhattan    Private room              2               188
## 12               Brooklyn    Private room              4               167
## 13              Manhattan    Private room              2               113
## 14              Manhattan Entire home/apt             90                27
## 15               Brooklyn Entire home/apt              2               148
## 16               Brooklyn Entire home/apt              2               198
## 17              Manhattan    Private room              1               260
## 18               Brooklyn Entire home/apt              3                53
## 19               Brooklyn Entire home/apt              3                 9
## 20               Brooklyn    Private room              2               130
## 21               Brooklyn    Private room              1                39
## 22               Brooklyn    Private room              2                71
## 23               Brooklyn Entire home/apt              2                88
## 24               Brooklyn    Private room              1                19
## 25              Manhattan Entire home/apt             10                58
## 26              Manhattan    Private room              3               108
## 27              Manhattan Entire home/apt             14                29
## 28              Manhattan    Private room              3               242
## 29              Manhattan    Private room              2                88
## 30               Brooklyn    Private room              4               197
## 31              Manhattan    Private room              3               273
## 32               Brooklyn    Private room              1                74
## 33               Brooklyn    Private room              4               168
## 34               Brooklyn Entire home/apt              2               231
## 35              Manhattan     Shared room              1               214
## 36              Manhattan    Private room              2               245
## 37               Brooklyn Entire home/apt              3                15
## 38               Brooklyn    Private room              7                25
## 39              Manhattan    Private room              4                81
## 40              Manhattan Entire home/apt              7                97
## 41               Brooklyn Entire home/apt             29                11
## 42                 Queens    Private room              3               248
## 43               Brooklyn Entire home/apt              7                61
## 44               Brooklyn Entire home/apt              3                11
## 45               Brooklyn    Private room              3               135
## 46               Brooklyn    Private room              1               112
## 47              Manhattan Entire home/apt              2                73
## 48               Brooklyn Entire home/apt              3                82
## 49               Brooklyn Entire home/apt              2               328
## 50              Manhattan Entire home/apt              7                19
## 51               Brooklyn Entire home/apt             30               105
## 52              Manhattan    Private room              5                19
## 53              Manhattan    Private room              2               289
## 54               Brooklyn    Private room              4               138
## 55              Manhattan Entire home/apt             30                21
## 56               Brooklyn    Private room              2                42
## 57              Manhattan Entire home/apt            180                 5
## 58              Manhattan Entire home/apt              2                66
## 59               Brooklyn Entire home/apt             30               143
## 60               Brooklyn    Private room              7                27
## 61              Manhattan    Private room             30               191
## 62               Brooklyn Entire home/apt              3                 4
## 63              Manhattan    Private room              1               338
## 64               Brooklyn Entire home/apt              1               148
## 65              Manhattan    Private room              1               106
## 66              Manhattan Entire home/apt              4               190
## 67              Manhattan Entire home/apt              9                49
## 68              Manhattan    Private room              7                23
## 69              Manhattan    Private room              2                49
## 70               Brooklyn    Private room              2               105
## 71              Manhattan Entire home/apt              5                21
## 72              Manhattan    Private room              1               142
## 73                 Queens    Private room             30                25
## 74               Brooklyn    Private room              3               143
## 75              Manhattan    Private room              3               167
## 76               Brooklyn    Private room              3                61
## 77              Manhattan Entire home/apt             31                54
## 78              Manhattan Entire home/apt              5                70
## 79               Brooklyn Entire home/apt              6                16
## 80              Manhattan    Private room             30                94
## 81               Brooklyn Entire home/apt              1                25
## 82               Brooklyn Entire home/apt              3                61
## 83              Manhattan    Private room              3               194
## 84              Manhattan    Private room              1                 2
## 85               Brooklyn    Private room              3               174
## 86               Brooklyn    Private room              4                24
## 87               Brooklyn Entire home/apt              4               166
## 88               Brooklyn    Private room              7                16
## 89               Brooklyn Entire home/apt              7                21
## 90               Brooklyn Entire home/apt              5               168
## 91               Brooklyn Entire home/apt              3               118
## 92              Manhattan Entire home/apt              3                81
## 93              Manhattan    Private room              1                 1
## 94              Manhattan    Private room             30                30
## 95               Brooklyn Entire home/apt              7               139
## 96              Manhattan    Private room              3                11
## 97               Brooklyn Entire home/apt              2               233
## 98              Manhattan    Private room              2                68
## 99              Manhattan Entire home/apt              4                46
## 100              Brooklyn    Private room              3               335
## 101              Brooklyn Entire home/apt             30                88
## 102              Brooklyn Entire home/apt             90               162
## 103              Brooklyn Entire home/apt             30                29
## 104             Manhattan    Private room              2               170
## 105              Brooklyn Entire home/apt             30                19
## 106             Manhattan    Private room              2               334
## 107              Brooklyn    Private room              2                19
## 108             Manhattan Entire home/apt              7                12
## 109              Brooklyn Entire home/apt             30               467
## 110             Manhattan Entire home/apt              2                 7
## 111             Manhattan Entire home/apt              5                38
## 112              Brooklyn Entire home/apt              3               324
## 113             Manhattan Entire home/apt              6                27
## 114             Manhattan Entire home/apt              1               115
## 115              Brooklyn    Private room              2               354
## 116             Manhattan Entire home/apt              2               195
## 117              Brooklyn Entire home/apt              2                16
## 118             Manhattan Entire home/apt              7                13
## 119             Manhattan Entire home/apt              4                25
## 120              Brooklyn    Private room              2                 9
## 121              Brooklyn    Private room              1                 9
## 122             Manhattan Entire home/apt              5                21
## 123             Manhattan    Private room             15                36
## 124              Brooklyn    Private room              3                63
## 125             Manhattan Entire home/apt              3               155
## 126              Brooklyn    Private room              3               260
## 127             Manhattan Entire home/apt              5                73
## 128              Brooklyn    Private room              3               193
## 129             Manhattan Entire home/apt              3                32
## 130             Manhattan    Private room              2                50
## 131             Manhattan Entire home/apt             29                26
## 132              Brooklyn    Private room              2                 2
## 133              Brooklyn    Private room              2               426
## 134              Brooklyn Entire home/apt              3               227
## 135              Brooklyn    Private room              4                84
## 136              Brooklyn Entire home/apt             29                 3
## 137              Brooklyn Entire home/apt              3                10
## 138              Brooklyn Entire home/apt              2                 4
## 139                Queens    Private room              2                 1
## 140              Brooklyn Entire home/apt              3               124
## 141              Brooklyn Entire home/apt              3                11
## 142              Brooklyn Entire home/apt              4               240
## 143             Manhattan Entire home/apt              3                30
## 144              Brooklyn    Private room              3               200
## 145              Brooklyn    Private room              8                27
## 146             Manhattan    Private room              4                79
## 147              Brooklyn    Private room             15                 9
## 148              Brooklyn    Private room              3               155
## 149              Brooklyn Entire home/apt             15                 4
## 150             Manhattan    Private room              2                34
## 151             Manhattan Entire home/apt             45               134
## 152              Brooklyn Entire home/apt              6                27
## 153             Manhattan Entire home/apt              4               126
## 154              Brooklyn Entire home/apt              3                23
## 155             Manhattan Entire home/apt              1               234
## 156              Brooklyn    Private room              4               202
## 157                Queens    Private room             30                28
## 158              Brooklyn Entire home/apt              2               309
## 159              Brooklyn    Private room              3                14
## 160             Manhattan Entire home/apt              3                 4
## 161              Brooklyn Entire home/apt              2                80
## 162             Manhattan Entire home/apt              3                 2
## 163              Brooklyn    Private room              2               294
## 164              Brooklyn Entire home/apt              2               150
## 165         Staten Island    Private room              2               166
## 166              Brooklyn    Private room              2                47
## 167                 Bronx    Private room              1               219
## 168              Brooklyn Entire home/apt              2               193
## 169             Manhattan    Private room              1                84
## 170             Manhattan Entire home/apt              3               114
## 171              Brooklyn    Private room              2               213
## 172             Manhattan Entire home/apt              3                86
## 173             Manhattan Entire home/apt              3                80
## 174             Manhattan Entire home/apt             26                38
## 175             Manhattan Entire home/apt              2                18
## 176              Brooklyn    Private room              2               206
## 177                Queens Entire home/apt              8                10
## 178             Manhattan    Private room              4               122
## 179              Brooklyn Entire home/apt              4                33
## 180              Brooklyn Entire home/apt              5                52
## 181              Brooklyn    Private room              3               126
## 182              Brooklyn    Private room              3                51
## 183             Manhattan    Private room              3               199
## 184              Brooklyn Entire home/apt             26                30
## 185             Manhattan Entire home/apt              3                 3
## 186             Manhattan Entire home/apt              1                41
## 187             Manhattan Entire home/apt              2               109
## 188              Brooklyn Entire home/apt              5               151
## 189             Manhattan    Private room              1               285
## 190             Manhattan    Private room              1               375
## 191                Queens    Private room              2                52
## 192             Manhattan Entire home/apt              5                10
## 193              Brooklyn    Private room              2                11
## 194                Queens Entire home/apt             30                33
## 195                Queens    Private room              7                 6
## 196                Queens Entire home/apt              7                38
## 197              Brooklyn Entire home/apt              2               358
## 198             Manhattan     Shared room              6                10
## 199              Brooklyn    Private room              2               226
## 200             Manhattan Entire home/apt              1               104
## 201                 Bronx    Private room              1               138
## 202             Manhattan    Private room              5               204
## 203              Brooklyn Entire home/apt              2               253
## 204              Brooklyn    Private room              2                23
## 205             Manhattan    Private room              2               115
## 206             Manhattan Entire home/apt              5               129
## 207              Brooklyn    Private room              4                82
## 208              Brooklyn    Private room              3                37
## 209             Manhattan Entire home/apt              1               204
## 210              Brooklyn Entire home/apt              2                69
## 211             Manhattan    Private room              1               192
## 212                Queens Entire home/apt              2                17
## 213              Brooklyn Entire home/apt              2               222
## 214             Manhattan Entire home/apt              3               205
## 215             Manhattan Entire home/apt              3                94
## 216             Manhattan Entire home/apt              3                 7
## 217             Manhattan Entire home/apt              2               108
## 218             Manhattan Entire home/apt              3               222
## 219             Manhattan    Private room              1               458
## 220              Brooklyn    Private room              2                21
## 221             Manhattan    Private room              7                17
## 222             Manhattan Entire home/apt              3                41
## 223                Queens Entire home/apt             14                 1
## 224              Brooklyn Entire home/apt              2                69
## 225             Manhattan Entire home/apt              4                18
## 226             Manhattan Entire home/apt             30                82
## 227             Manhattan Entire home/apt              4                94
## 228             Manhattan Entire home/apt              5                10
## 229             Manhattan Entire home/apt             28               183
## 230             Manhattan    Private room              1               189
## 231             Manhattan    Private room              2                 1
## 232             Manhattan Entire home/apt              2               127
## 233             Manhattan Entire home/apt              4                 4
## 234             Manhattan Entire home/apt              3               135
## 235             Manhattan Entire home/apt              2                21
## 236             Manhattan Entire home/apt              2                35
## 237             Manhattan    Private room             14                10
## 238             Manhattan    Private room              4               171
## 239             Manhattan Entire home/apt            200                92
## 240              Brooklyn Entire home/apt              3               238
## 241             Manhattan Entire home/apt             50                56
## 242              Brooklyn Entire home/apt              3               111
## 243         Staten Island    Private room              2               193
## 244         Staten Island    Private room              2               147
## 245         Staten Island    Private room              2               177
## 246             Manhattan Entire home/apt              3               185
## 247             Manhattan Entire home/apt              9                62
## 248              Brooklyn Entire home/apt              3               124
## 249              Brooklyn    Private room              2               181
## 250         Staten Island    Private room              2               333
## 251                Queens Entire home/apt              5               441
## 252              Brooklyn    Private room              1                45
## 253              Brooklyn    Private room             14                 9
## 254                 Bronx Entire home/apt              2                38
## 255              Brooklyn Entire home/apt              2               248
## 256             Manhattan Entire home/apt              5               143
## 257              Brooklyn    Private room              3                36
## 258              Brooklyn    Private room             17                14
## 259              Brooklyn    Private room              3               279
## 260              Brooklyn    Private room              4                18
## 261              Brooklyn    Private room              6                50
## 262              Brooklyn    Private room              2               227
## 263             Manhattan Entire home/apt             14                 1
## 264             Manhattan    Private room              2               203
## 265             Manhattan Entire home/apt              2               210
## 266              Brooklyn    Private room              5                64
## 267             Manhattan Entire home/apt              7                 5
## 268              Brooklyn Entire home/apt             10                49
## 269              Brooklyn Entire home/apt              4               132
## 270             Manhattan    Private room              3                20
## 271              Brooklyn Entire home/apt              2                11
## 272              Brooklyn Entire home/apt              3                51
## 273              Brooklyn    Private room             21                15
## 274             Manhattan Entire home/apt              3                67
## 275             Manhattan    Private room              1               109
## 276              Brooklyn Entire home/apt              2                 9
## 277             Manhattan Entire home/apt              6               187
## 278              Brooklyn Entire home/apt              2               214
## 279              Brooklyn Entire home/apt              3                69
## 280             Manhattan Entire home/apt             28                22
## 281              Brooklyn Entire home/apt             30                56
## 282             Manhattan    Private room              3                93
## 283             Manhattan    Private room              1               104
## 284             Manhattan    Private room             30                64
## 285              Brooklyn Entire home/apt              3               127
## 286             Manhattan Entire home/apt             11                30
## 287              Brooklyn Entire home/apt              2               106
## 288              Brooklyn    Private room              3                 6
## 289             Manhattan Entire home/apt              2               191
## 290             Manhattan Entire home/apt             30                48
## 291              Brooklyn    Private room              5                47
## 292             Manhattan    Private room              2               120
## 293             Manhattan    Private room              3                52
## 294             Manhattan Entire home/apt              2                48
## 295             Manhattan Entire home/apt              3                32
## 296             Manhattan Entire home/apt             25                43
## 297             Manhattan Entire home/apt             30                39
## 298              Brooklyn Entire home/apt              1                50
## 299                 Bronx Entire home/apt             30                 4
## 300             Manhattan Entire home/apt             13                38
## 301              Brooklyn    Private room              3                29
## 302              Brooklyn Entire home/apt              4                59
## 303              Brooklyn Entire home/apt              1                68
## 304             Manhattan Entire home/apt             14                26
## 305             Manhattan Entire home/apt             14                31
## 306                Queens Entire home/apt              2               198
## 307              Brooklyn    Private room              2                 1
## 308              Brooklyn    Private room              2               220
## 309             Manhattan Entire home/apt              3               286
## 310              Brooklyn Entire home/apt              2               398
## 311              Brooklyn    Private room              3                36
## 312             Manhattan    Private room              3                36
## 313              Brooklyn Entire home/apt              4                 6
## 314              Brooklyn Entire home/apt              6                14
## 315              Brooklyn    Private room             14                76
## 316             Manhattan    Private room              2               182
## 317              Brooklyn    Private room              3                 8
## 318              Brooklyn    Private room              3                 7
## 319              Brooklyn Entire home/apt             30                34
## 320              Brooklyn    Private room              3                 2
## 321              Brooklyn    Private room              3                66
## 322              Brooklyn Entire home/apt              3                80
## 323             Manhattan Entire home/apt              4               240
## 324              Brooklyn Entire home/apt              3                46
## 325              Brooklyn Entire home/apt              2               228
## 326              Brooklyn Entire home/apt             35                 5
## 327              Brooklyn Entire home/apt             30                 8
## 328             Manhattan Entire home/apt              2                33
## 329              Brooklyn    Private room              3                13
## 330              Brooklyn Entire home/apt              5                 5
## 331             Manhattan Entire home/apt              1               388
## 332             Manhattan    Private room              3               223
## 333              Brooklyn Entire home/apt             15                11
## 334             Manhattan Entire home/apt              2               151
## 335              Brooklyn Entire home/apt              3               218
## 336              Brooklyn Entire home/apt              2                75
## 337                Queens    Private room              1                42
## 338              Brooklyn Entire home/apt              2               370
## 339              Brooklyn Entire home/apt              5               104
## 340              Brooklyn Entire home/apt              7                13
## 341              Brooklyn Entire home/apt              5                 4
## 342              Brooklyn    Private room              4                11
## 343             Manhattan Entire home/apt              4                 1
## 344             Manhattan Entire home/apt             30                19
## 345             Manhattan     Shared room              7               131
## 346              Brooklyn Entire home/apt             30                15
## 347             Manhattan    Private room              2               136
## 348                Queens    Private room              1                43
## 349              Brooklyn Entire home/apt              7                98
## 350              Brooklyn    Private room              3                31
## 351             Manhattan Entire home/apt             21                45
## 352              Brooklyn Entire home/apt              3               124
## 353              Brooklyn    Private room              3                 9
## 354             Manhattan Entire home/apt              5               166
## 355                Queens    Private room             27                13
## 356              Brooklyn Entire home/apt             30                15
## 357             Manhattan    Private room              3               380
## 358              Brooklyn Entire home/apt              2                86
## 359              Brooklyn Entire home/apt              3               248
## 360             Manhattan Entire home/apt              5                49
## 361             Manhattan Entire home/apt             18                54
## 362              Brooklyn Entire home/apt              7                 3
## 363             Manhattan    Private room              1                 1
## 364             Manhattan Entire home/apt              2                56
## 365              Brooklyn    Private room              2               163
## 366              Brooklyn    Private room              2               247
## 367             Manhattan    Private room             10               116
## 368              Brooklyn Entire home/apt             14                27
## 369             Manhattan Entire home/apt              1                52
## 370             Manhattan Entire home/apt              6                39
## 371             Manhattan    Private room             14                35
## 372             Manhattan Entire home/apt              1               320
## 373                Queens Entire home/apt              4                30
## 374              Brooklyn Entire home/apt              3               225
## 375              Brooklyn Entire home/apt             30                95
## 376              Brooklyn Entire home/apt              4                70
## 377             Manhattan    Private room              2                35
## 378              Brooklyn Entire home/apt              4                50
## 379              Brooklyn Entire home/apt              2                29
## 380              Brooklyn Entire home/apt              2                23
## 381             Manhattan Entire home/apt              2               142
## 382             Manhattan Entire home/apt              2                70
## 383              Brooklyn    Private room              2                38
## 384              Brooklyn    Private room              1                82
## 385             Manhattan Entire home/apt              2               403
## 386             Manhattan    Private room              1                 3
## 387              Brooklyn Entire home/apt             30                 3
## 388             Manhattan Entire home/apt              1               116
## 389              Brooklyn Entire home/apt              2               175
## 390                Queens Entire home/apt              3                28
## 391             Manhattan Entire home/apt              4                24
## 392              Brooklyn Entire home/apt              2                15
## 393             Manhattan    Private room              4               105
## 394              Brooklyn Entire home/apt             10                22
## 395              Brooklyn    Private room              2               263
## 396              Brooklyn Entire home/apt              3                86
## 397             Manhattan Entire home/apt              4                10
## 398              Brooklyn Entire home/apt              7                18
## 399              Brooklyn Entire home/apt              5                 8
## 400              Brooklyn Entire home/apt             20                70
## 401              Brooklyn Entire home/apt              3               150
## 402              Brooklyn    Private room              2               115
## 403             Manhattan Entire home/apt              2                69
## 404              Brooklyn Entire home/apt              3               232
## 405              Brooklyn Entire home/apt              1                35
## 406             Manhattan Entire home/apt              3                18
## 407             Manhattan Entire home/apt              3                68
## 408             Manhattan Entire home/apt              4                22
## 409             Manhattan Entire home/apt              8                17
## 410             Manhattan    Private room              1                34
## 411              Brooklyn Entire home/apt              7                 8
## 412             Manhattan Entire home/apt              5                 2
## 413              Brooklyn Entire home/apt              4                52
## 414             Manhattan Entire home/apt              2                74
## 415             Manhattan Entire home/apt              3                18
## 416              Brooklyn Entire home/apt              2                72
## 417             Manhattan Entire home/apt              2               191
## 418                 Bronx Entire home/apt              1               197
## 419             Manhattan Entire home/apt              4                19
## 420                Queens Entire home/apt              1               414
## 421              Brooklyn    Private room              2                 8
## 422             Manhattan    Private room              7                25
## 423             Manhattan    Private room              3               119
## 424             Manhattan Entire home/apt              2               203
## 425                Queens    Private room             40                53
## 426              Brooklyn Entire home/apt              2               104
## 427             Manhattan    Private room              3               175
## 428             Manhattan    Private room              3                38
## 429              Brooklyn Entire home/apt             45                39
## 430              Brooklyn Entire home/apt             31                88
## 431              Brooklyn    Private room              1                27
## 432              Brooklyn Entire home/apt              5               117
## 433              Brooklyn    Private room              3                43
## 434              Brooklyn Entire home/apt              5                 4
## 435              Brooklyn Entire home/apt              2               385
## 436              Brooklyn    Private room              1                64
## 437              Brooklyn    Private room              1                39
## 438             Manhattan    Private room              2                37
## 439             Manhattan Entire home/apt              3                10
## 440             Manhattan Entire home/apt              2               103
## 441                Queens    Private room             40                41
## 442              Brooklyn    Private room              6                 3
## 443             Manhattan Entire home/apt              3               227
## 444              Brooklyn Entire home/apt              5                37
## 445              Brooklyn Entire home/apt              2                29
## 446              Brooklyn    Private room              3               205
## 447             Manhattan Entire home/apt              5                42
## 448             Manhattan Entire home/apt              2               280
## 449              Brooklyn    Private room              4                86
## 450             Manhattan    Private room              2                54
## 451              Brooklyn Entire home/apt              7                 7
## 452             Manhattan    Private room              5                57
## 453                Queens    Private room             44                31
## 454             Manhattan Entire home/apt             31               188
## 455              Brooklyn    Private room              3               480
## 456             Manhattan    Private room              2                34
## 457              Brooklyn Entire home/apt              5                 6
## 458             Manhattan Entire home/apt              9                 3
## 459              Brooklyn Entire home/apt              5                 2
## 460              Brooklyn    Private room              1                20
## 461             Manhattan Entire home/apt              2               129
## 462             Manhattan Entire home/apt              3               147
## 463              Brooklyn Entire home/apt             28               101
## 464             Manhattan Entire home/apt              2                11
## 465             Manhattan Entire home/apt             65                11
## 466             Manhattan    Private room              2                41
## 467              Brooklyn Entire home/apt              2                87
## 468                 Bronx    Private room              4               117
## 469              Brooklyn Entire home/apt              2                86
## 470             Manhattan Entire home/apt              2                15
## 471              Brooklyn    Private room              2                35
## 472             Manhattan    Private room              2                17
## 473             Manhattan    Private room              3                 3
## 474             Manhattan    Private room              5                43
## 475             Manhattan     Shared room              3               168
## 476              Brooklyn    Private room              3               241
## 477             Manhattan Entire home/apt              2               105
## 478              Brooklyn Entire home/apt              2                11
## 479             Manhattan Entire home/apt             30                30
## 480              Brooklyn Entire home/apt              3                31
## 481             Manhattan    Private room              4                49
## 482              Brooklyn Entire home/apt              4                23
## 483              Brooklyn Entire home/apt              2                20
## 484             Manhattan Entire home/apt             10                18
## 485             Manhattan Entire home/apt              6                90
## 486             Manhattan    Private room              2                99
## 487             Manhattan Entire home/apt              1                 6
## 488                Queens Entire home/apt             30                21
## 489                Queens Entire home/apt             30                24
## 490             Manhattan Entire home/apt              2               111
## 491             Manhattan Entire home/apt              2                86
## 492             Manhattan Entire home/apt             15                66
## 493                 Bronx Entire home/apt              2               271
## 494              Brooklyn    Private room              2               227
## 495              Brooklyn    Private room              4                80
## 496             Manhattan    Private room             30                 5
## 497              Brooklyn Entire home/apt              2               187
## 498             Manhattan Entire home/apt              1                 2
## 499              Brooklyn Entire home/apt              6                 1
## 500              Brooklyn Entire home/apt              3                67
## 501             Manhattan Entire home/apt              1                63
## 502             Manhattan    Private room              1                89
## 503             Manhattan    Private room              4                 1
## 504              Brooklyn Entire home/apt              3               177
## 505              Brooklyn Entire home/apt              4                90
## 506             Manhattan Entire home/apt              7                39
## 507              Brooklyn Entire home/apt              3                42
## 508              Brooklyn Entire home/apt              3                33
## 509              Brooklyn Entire home/apt              3               179
## 510             Manhattan    Private room              3                81
## 511             Manhattan    Private room             28                43
## 512              Brooklyn    Private room             30                52
## 513                Queens    Private room              2               160
## 514             Manhattan Entire home/apt              6                23
## 515             Manhattan    Private room              6                35
## 516             Manhattan    Private room              1               225
## 517              Brooklyn    Private room              1               401
## 518              Brooklyn    Private room              1                72
## 519              Brooklyn    Private room              1                46
## 520              Brooklyn Entire home/apt              3                83
## 521              Brooklyn    Private room              1               211
## 522              Brooklyn Entire home/apt              5                15
## 523             Manhattan Entire home/apt              1               122
## 524             Manhattan    Private room              2               295
## 525              Brooklyn Entire home/apt              3               207
## 526             Manhattan    Private room              3                50
## 527              Brooklyn    Private room              2               273
## 528             Manhattan Entire home/apt             30                25
## 529              Brooklyn Entire home/apt              4               105
## 530              Brooklyn    Private room              4                72
## 531             Manhattan Entire home/apt              1                 8
## 532              Brooklyn Entire home/apt              2                58
## 533              Brooklyn    Private room              6                 8
## 534             Manhattan    Private room              3               172
## 535             Manhattan    Private room              1               330
## 536              Brooklyn Entire home/apt              3               123
## 537              Brooklyn    Private room              2                55
## 538              Brooklyn Entire home/apt              4                87
## 539                 Bronx    Private room              3               258
## 540              Brooklyn Entire home/apt              2                 4
## 541              Brooklyn Entire home/apt             14                31
## 542              Brooklyn Entire home/apt              4               128
## 543              Brooklyn Entire home/apt              3                14
## 544              Brooklyn Entire home/apt              3                30
## 545                Queens    Private room             28               258
## 546              Brooklyn Entire home/apt              3               228
## 547             Manhattan Entire home/apt              1                60
## 548             Manhattan    Private room             90                 9
## 549             Manhattan Entire home/apt              2               179
## 550              Brooklyn Entire home/apt              7                 9
## 551              Brooklyn    Private room              1                 1
## 552             Manhattan    Private room             30                25
## 553         Staten Island    Private room              2                 2
## 554              Brooklyn    Private room              3               152
## 555                Queens Entire home/apt             30                24
## 556             Manhattan Entire home/apt              2                45
## 557              Brooklyn Entire home/apt             30                 7
## 558             Manhattan    Private room              7                19
## 559              Brooklyn Entire home/apt              1                24
## 560              Brooklyn Entire home/apt              4                 8
## 561             Manhattan Entire home/apt              1                29
## 562             Manhattan Entire home/apt              1                14
## 563             Manhattan    Private room              1                33
## 564             Manhattan    Private room              4                99
## 565              Brooklyn    Private room              3                59
## 566             Manhattan Entire home/apt              3               142
## 567              Brooklyn Entire home/apt             29                22
## 568             Manhattan    Private room              3                82
## 569              Brooklyn    Private room              2                23
## 570             Manhattan Entire home/apt              4                32
## 571              Brooklyn Entire home/apt              5                24
## 572             Manhattan    Private room              1                59
## 573             Manhattan    Private room             55                 6
## 574              Brooklyn Entire home/apt              4                18
## 575             Manhattan Entire home/apt              4                 3
## 576              Brooklyn    Private room              3               115
## 577              Brooklyn    Private room              3               154
## 578              Brooklyn    Private room              1               164
## 579         Staten Island Entire home/apt              6                76
## 580              Brooklyn Entire home/apt              3               116
## 581              Brooklyn Entire home/apt              3               234
## 582             Manhattan Entire home/apt              2               120
## 583              Brooklyn Entire home/apt              4                82
## 584             Manhattan Entire home/apt              3                13
## 585             Manhattan    Private room             30                59
## 586              Brooklyn Entire home/apt              7                63
## 587             Manhattan    Private room              2                52
## 588             Manhattan    Private room              1               278
## 589              Brooklyn Entire home/apt              5                 1
## 590              Brooklyn Entire home/apt              2                35
## 591                 Bronx    Private room              5               235
## 592             Manhattan Entire home/apt             28               115
## 593             Manhattan    Private room              1               109
## 594             Manhattan    Private room              5                 1
## 595              Brooklyn Entire home/apt              3               305
## 596             Manhattan Entire home/apt              1               102
## 597             Manhattan Entire home/apt             30                83
## 598                Queens    Private room              1                19
## 599             Manhattan    Private room              2                61
## 600             Manhattan Entire home/apt              5                89
## 601                Queens    Private room             30                65
## 602              Brooklyn Entire home/apt              1                40
## 603             Manhattan    Private room             30                80
## 604             Manhattan Entire home/apt             30               136
## 605             Manhattan Entire home/apt              3               100
## 606              Brooklyn Entire home/apt              2               125
## 607              Brooklyn Entire home/apt              5                40
## 608             Manhattan Entire home/apt             30               139
## 609             Manhattan Entire home/apt              7                 2
## 610                Queens Entire home/apt             28                49
## 611             Manhattan Entire home/apt              5                 8
## 612              Brooklyn    Private room              5               124
## 613              Brooklyn Entire home/apt             21                 5
## 614              Brooklyn    Private room              1               147
## 615              Brooklyn    Private room              1                43
## 616              Brooklyn Entire home/apt              6                 8
## 617             Manhattan Entire home/apt              2                37
## 618              Brooklyn    Private room              1               120
## 619              Brooklyn Entire home/apt              1                24
## 620              Brooklyn Entire home/apt              3                 5
## 621              Brooklyn Entire home/apt             30               242
## 622             Manhattan    Private room              4               229
## 623                 Bronx    Private room              2               108
## 624              Brooklyn Entire home/apt              2               181
## 625             Manhattan Entire home/apt              5                34
## 626              Brooklyn    Private room              3                 5
## 627             Manhattan Entire home/apt              1                 5
## 628                Queens Entire home/apt              4                60
## 629             Manhattan Entire home/apt              1               238
## 630              Brooklyn Entire home/apt              3                34
## 631             Manhattan Entire home/apt              3               131
## 632             Manhattan Entire home/apt              4                 6
## 633             Manhattan    Private room             60                 4
## 634              Brooklyn    Private room              1                 7
## 635              Brooklyn Entire home/apt              5               125
## 636             Manhattan Entire home/apt              1                49
## 637             Manhattan    Private room              1                11
## 638             Manhattan Entire home/apt              3               107
## 639              Brooklyn    Private room              2               241
## 640             Manhattan    Private room              1               176
## 641             Manhattan    Private room              4               151
## 642             Manhattan Entire home/apt              3                49
## 643              Brooklyn Entire home/apt            120                13
## 644              Brooklyn Entire home/apt              3                33
## 645              Brooklyn Entire home/apt              3                24
## 646              Brooklyn Entire home/apt              3                59
## 647              Brooklyn    Private room              1                 2
## 648             Manhattan Entire home/apt              2                16
## 649             Manhattan    Private room              2                72
## 650              Brooklyn Entire home/apt              3                24
## 651              Brooklyn Entire home/apt              3                23
## 652              Brooklyn Entire home/apt              3                43
## 653              Brooklyn Entire home/apt              3                30
## 654              Brooklyn Entire home/apt              3                39
## 655              Brooklyn    Private room              3                 8
## 656              Brooklyn    Private room              3                 3
## 657              Brooklyn    Private room              3                 6
## 658              Brooklyn    Private room              3                 4
## 659                Queens    Private room              5                56
## 660              Brooklyn    Private room              3                 7
## 661              Brooklyn Entire home/apt              1                 2
## 662              Brooklyn Entire home/apt              2               178
## 663              Brooklyn    Private room             30                30
## 664              Brooklyn Entire home/apt              2               190
## 665             Manhattan Entire home/apt              7                25
## 666                Queens Entire home/apt             10                81
## 667             Manhattan Entire home/apt              2                 7
## 668              Brooklyn    Private room              4               216
## 669              Brooklyn Entire home/apt             30                31
## 670              Brooklyn    Private room             90                53
## 671              Brooklyn    Private room              3               247
## 672              Brooklyn Entire home/apt              3               233
## 673              Brooklyn Entire home/apt              3               135
## 674                Queens    Private room              4                20
## 675             Manhattan Entire home/apt              4                46
## 676             Manhattan Entire home/apt            365                10
## 677             Manhattan    Private room              1               143
## 678         Staten Island Entire home/apt              2                21
## 679         Staten Island Entire home/apt              2                 8
## 680              Brooklyn Entire home/apt              7                 4
## 681             Manhattan Entire home/apt              2               314
## 682              Brooklyn Entire home/apt              3                18
## 683             Manhattan Entire home/apt              7                11
## 684             Manhattan    Private room              7                51
## 685             Manhattan    Private room              5                20
## 686             Manhattan Entire home/apt              7                 8
## 687             Manhattan Entire home/apt             31                59
## 688              Brooklyn Entire home/apt              4                54
## 689             Manhattan    Private room              5                10
## 690             Manhattan Entire home/apt              4               153
## 691              Brooklyn Entire home/apt              3               110
## 692             Manhattan    Private room              2                69
## 693             Manhattan Entire home/apt              1                 1
## 694              Brooklyn Entire home/apt            180                24
## 695                Queens    Private room              2                95
## 696             Manhattan Entire home/apt              2               129
## 697             Manhattan    Private room              7               171
## 698              Brooklyn    Private room              2                20
## 699              Brooklyn    Private room             90                17
## 700             Manhattan Entire home/apt              5                 8
## 701             Manhattan Entire home/apt              7                11
## 702             Manhattan Entire home/apt              5                 5
## 703             Manhattan Entire home/apt             30                36
## 704             Manhattan Entire home/apt             30                16
## 705              Brooklyn Entire home/apt             15                 5
## 706             Manhattan Entire home/apt              4                68
## 707             Manhattan Entire home/apt             28                89
## 708             Manhattan    Private room             30                10
## 709                Queens    Private room              1                38
## 710                 Bronx    Private room              2                15
## 711              Brooklyn    Private room              2                20
## 712             Manhattan    Private room              3                25
## 713             Manhattan Entire home/apt              2                35
## 714              Brooklyn Entire home/apt             30                 1
## 715             Manhattan Entire home/apt              3                64
## 716              Brooklyn    Private room              3                26
## 717                Queens    Private room              2               244
## 718              Brooklyn    Private room             15                21
## 719                Queens    Private room              2               270
## 720              Brooklyn    Private room             10                16
## 721             Manhattan Entire home/apt              3                24
## 722              Brooklyn    Private room              1                30
## 723              Brooklyn    Private room              2                 5
## 724              Brooklyn Entire home/apt              4               115
## 725              Brooklyn    Private room              5                 9
## 726              Brooklyn    Private room              5                45
## 727             Manhattan Entire home/apt            365                19
## 728             Manhattan Entire home/apt              3                 5
## 729             Manhattan Entire home/apt              2               203
## 730             Manhattan Entire home/apt            122                20
## 731             Manhattan Entire home/apt              3                49
## 732              Brooklyn    Private room              4                 6
## 733              Brooklyn Entire home/apt              5                 7
## 734              Brooklyn    Private room              2                35
## 735             Manhattan Entire home/apt              5                28
## 736             Manhattan    Private room              2                54
## 737              Brooklyn Entire home/apt              3               115
## 738              Brooklyn Entire home/apt              5                 6
## 739             Manhattan Entire home/apt             15                 1
## 740              Brooklyn Entire home/apt              3               204
## 741              Brooklyn Entire home/apt            180                 1
## 742              Brooklyn Entire home/apt              3                89
## 743             Manhattan    Private room              6               130
## 744              Brooklyn    Private room              7                15
## 745             Manhattan Entire home/apt             30                52
## 746              Brooklyn Entire home/apt              6                58
## 747             Manhattan    Private room              3               208
## 748                Queens    Private room              5                 3
## 749             Manhattan Entire home/apt             30                 7
## 750              Brooklyn    Private room              1                 1
## 751             Manhattan Entire home/apt              3                 2
## 752              Brooklyn Entire home/apt              4               122
## 753              Brooklyn Entire home/apt              3                63
## 754              Brooklyn Entire home/apt              5                26
## 755             Manhattan Entire home/apt             27                 1
## 756              Brooklyn Entire home/apt              5                14
## 757             Manhattan    Private room              1               107
## 758              Brooklyn Entire home/apt             30                 3
## 759             Manhattan Entire home/apt              3               107
## 760              Brooklyn    Private room              3                29
## 761              Brooklyn Entire home/apt              6                69
## 762              Brooklyn    Private room              3               232
## 763             Manhattan Entire home/apt              7                24
## 764              Brooklyn Entire home/apt             19                 5
## 765             Manhattan Entire home/apt              3                10
## 766              Brooklyn    Private room              4                36
## 767             Manhattan Entire home/apt              5                94
## 768             Manhattan    Private room              6                 1
## 769             Manhattan Entire home/apt              1                63
## 770              Brooklyn    Private room             15                 5
## 771              Brooklyn Entire home/apt              3               238
## 772             Manhattan    Private room              2               101
## 773              Brooklyn Entire home/apt              3                21
## 774             Manhattan Entire home/apt              2                72
## 775              Brooklyn Entire home/apt              2                40
## 776              Brooklyn Entire home/apt              3               103
## 777              Brooklyn Entire home/apt              6                66
## 778              Brooklyn Entire home/apt              3                35
## 779              Brooklyn Entire home/apt             31               121
## 780             Manhattan Entire home/apt              8                15
## 781              Brooklyn Entire home/apt              2                13
## 782             Manhattan Entire home/apt              2               129
## 783             Manhattan Entire home/apt             20               157
## 784             Manhattan Entire home/apt              5                 8
## 785                Queens    Private room              2                 5
## 786              Brooklyn Entire home/apt              4                46
## 787             Manhattan Entire home/apt             30                37
## 788             Manhattan Entire home/apt              7                14
## 789              Brooklyn Entire home/apt              5                37
## 790                Queens Entire home/apt              5                 1
## 791             Manhattan    Private room              3               209
## 792             Manhattan Entire home/apt              3                 4
## 793              Brooklyn    Private room             60                17
## 794              Brooklyn Entire home/apt              4                54
## 795              Brooklyn Entire home/apt              3                43
## 796                Queens Entire home/apt              3                 7
## 797              Brooklyn Entire home/apt              3                75
## 798             Manhattan Entire home/apt              1                88
## 799              Brooklyn Entire home/apt              3                73
## 800              Brooklyn Entire home/apt              3                89
## 801              Brooklyn Entire home/apt              3                23
## 802              Brooklyn Entire home/apt              3                11
## 803              Brooklyn    Private room             28                84
## 804              Brooklyn Entire home/apt              3                54
## 805              Brooklyn    Private room              3                17
## 806              Brooklyn    Private room              7                 1
## 807              Brooklyn Entire home/apt              1                73
## 808             Manhattan Entire home/apt              3                36
## 809              Brooklyn    Private room              2                98
## 810                Queens    Private room              1                63
## 811              Brooklyn    Private room              5                 2
## 812              Brooklyn    Private room              5                18
## 813              Brooklyn    Private room              3                24
## 814              Brooklyn    Private room              3                 1
## 815              Brooklyn    Private room              1                 2
## 816              Brooklyn Entire home/apt             14                23
## 817              Brooklyn    Private room              2                93
## 818             Manhattan Entire home/apt              5               152
## 819              Brooklyn Entire home/apt              1               119
## 820              Brooklyn Entire home/apt              4                 9
## 821             Manhattan    Private room              2                44
## 822              Brooklyn    Private room              2               158
## 823             Manhattan Entire home/apt              7                12
## 824             Manhattan Entire home/apt              3                51
## 825             Manhattan Entire home/apt              2                11
## 826              Brooklyn Entire home/apt              3               236
## 827              Brooklyn    Private room              3                16
## 828              Brooklyn    Private room              5               123
## 829             Manhattan    Private room              3                14
## 830              Brooklyn    Private room             14                65
## 831         Staten Island    Private room              1                50
## 832             Manhattan    Private room              3                33
## 833             Manhattan    Private room              3                30
## 834              Brooklyn    Private room              3                13
## 835             Manhattan Entire home/apt             30                18
## 836              Brooklyn Entire home/apt              4                 1
## 837             Manhattan    Private room              3               216
## 838                Queens    Private room              2                98
## 839              Brooklyn    Private room              2                61
## 840             Manhattan Entire home/apt             30                13
## 841             Manhattan    Private room              3               136
## 842              Brooklyn Entire home/apt              2                39
## 843             Manhattan Entire home/apt             14                65
## 844              Brooklyn Entire home/apt              3                62
## 845             Manhattan    Private room              3                47
## 846              Brooklyn Entire home/apt              2                42
## 847              Brooklyn    Private room              3               207
## 848              Brooklyn    Private room              4                72
## 849              Brooklyn    Private room             14                22
## 850             Manhattan Entire home/apt             30                25
## 851              Brooklyn Entire home/apt              2               215
## 852              Brooklyn Entire home/apt              4                26
## 853             Manhattan Entire home/apt              5                18
## 854             Manhattan Entire home/apt              3                18
## 855              Brooklyn Entire home/apt              2               320
## 856              Brooklyn    Private room              2               160
## 857             Manhattan    Private room              2                78
## 858             Manhattan Entire home/apt             30                64
## 859              Brooklyn    Private room              2               219
## 860             Manhattan    Private room              1                66
## 861              Brooklyn Entire home/apt              3                25
## 862             Manhattan Entire home/apt              4               102
## 863             Manhattan Entire home/apt              2                32
## 864              Brooklyn    Private room              3                15
## 865             Manhattan Entire home/apt              5                 1
## 866             Manhattan Entire home/apt              3                12
## 867             Manhattan Entire home/apt             10                19
## 868             Manhattan Entire home/apt              3               297
## 869              Brooklyn Entire home/apt              3                12
## 870              Brooklyn Entire home/apt              4                 9
## 871             Manhattan Entire home/apt             15                 9
## 872             Manhattan    Private room              7                46
## 873              Brooklyn    Private room              4                42
## 874             Manhattan    Private room              2               118
## 875              Brooklyn Entire home/apt             30                53
## 876             Manhattan    Private room              1                15
## 877              Brooklyn Entire home/apt              3                64
## 878              Brooklyn Entire home/apt              3                51
## 879              Brooklyn Entire home/apt              3                79
## 880             Manhattan    Private room              3               202
## 881             Manhattan Entire home/apt              1                23
## 882             Manhattan    Private room              6                62
## 883             Manhattan Entire home/apt              2                36
## 884             Manhattan Entire home/apt              1                16
## 885             Manhattan Entire home/apt              4                24
## 886             Manhattan    Private room              2                77
## 887             Manhattan    Private room              5               110
## 888             Manhattan    Private room              1                56
## 889             Manhattan    Private room              1                 7
## 890              Brooklyn Entire home/apt             18                19
## 891             Manhattan    Private room              3                 7
## 892             Manhattan Entire home/apt              1                53
## 893             Manhattan Entire home/apt              3               265
## 894              Brooklyn Entire home/apt             30                 8
## 895              Brooklyn Entire home/apt             14                46
## 896              Brooklyn Entire home/apt              5                 6
## 897             Manhattan Entire home/apt              4                75
## 898              Brooklyn    Private room              5                11
## 899             Manhattan    Private room              3                 5
## 900             Manhattan Entire home/apt              3               132
## 901             Manhattan Entire home/apt              6                41
## 902              Brooklyn    Private room              7                34
## 903              Brooklyn Entire home/apt              3                34
## 904             Manhattan Entire home/apt              7                27
## 905              Brooklyn    Private room              4                30
## 906             Manhattan    Private room              3               214
## 907             Manhattan     Shared room             30                12
## 908             Manhattan    Private room              2                 6
## 909              Brooklyn    Private room              3               156
## 910              Brooklyn    Private room              2                30
## 911              Brooklyn Entire home/apt              5                 1
## 912              Brooklyn    Private room              5                 3
## 913              Brooklyn    Private room              2               272
## 914              Brooklyn    Private room              3                63
## 915             Manhattan Entire home/apt             30                58
## 916              Brooklyn Entire home/apt              2                 5
## 917              Brooklyn    Private room              3                63
## 918              Brooklyn Entire home/apt              5               268
## 919         Staten Island    Private room              3                80
## 920             Manhattan Entire home/apt              3                22
## 921             Manhattan Entire home/apt              7                13
## 922              Brooklyn Entire home/apt              4                23
## 923              Brooklyn Entire home/apt             30                 3
## 924             Manhattan    Private room              3                10
## 925             Manhattan    Private room              3                14
## 926             Manhattan    Private room              1                20
## 927              Brooklyn    Private room              5                 2
## 928                 Bronx Entire home/apt              2                47
## 929         Staten Island    Private room              2                 6
## 930             Manhattan    Private room              7                93
## 931             Manhattan Entire home/apt              3               116
## 932             Manhattan    Private room            240                15
## 933             Manhattan Entire home/apt              2                70
## 934             Manhattan    Private room              3                 4
## 935             Manhattan Entire home/apt             30               128
## 936                Queens    Private room              1                59
## 937                Queens     Shared room              1                 8
## 938              Brooklyn Entire home/apt              2               106
## 939              Brooklyn    Private room             15                15
## 940             Manhattan    Private room              2               133
## 941             Manhattan Entire home/apt              4                27
## 942             Manhattan    Private room              5                61
## 943              Brooklyn    Private room              2                 2
## 944                Queens    Private room              1                16
## 945             Manhattan Entire home/apt              5                38
## 946             Manhattan    Private room              1                25
## 947             Manhattan Entire home/apt              3                93
## 948             Manhattan    Private room              3                 6
## 949             Manhattan Entire home/apt              7                30
## 950              Brooklyn Entire home/apt              3                17
## 951             Manhattan    Private room             10                67
## 952              Brooklyn Entire home/apt             30                53
## 953              Brooklyn Entire home/apt             30                32
## 954              Brooklyn Entire home/apt             30               131
## 955             Manhattan Entire home/apt              4                19
## 956             Manhattan    Private room              3                74
## 957             Manhattan    Private room              3               165
## 958             Manhattan Entire home/apt              2                16
## 959              Brooklyn    Private room              3               269
## 960              Brooklyn Entire home/apt              3               243
## 961                Queens Entire home/apt              2                59
## 962             Manhattan Entire home/apt              3               134
## 963             Manhattan Entire home/apt             28                81
## 964              Brooklyn Entire home/apt              3                 7
## 965              Brooklyn    Private room              3               112
## 966              Brooklyn Entire home/apt              2                92
## 967              Brooklyn Entire home/apt             29                23
## 968             Manhattan    Private room              3                67
## 969              Brooklyn Entire home/apt              2                 8
## 970             Manhattan Entire home/apt              2               244
## 971              Brooklyn    Private room              6                62
## 972              Brooklyn Entire home/apt              5               125
## 973              Brooklyn Entire home/apt             30                58
## 974              Brooklyn Entire home/apt              5                 9
## 975              Brooklyn    Private room              3               137
## 976             Manhattan Entire home/apt              2                16
## 977             Manhattan Entire home/apt              1                36
## 978              Brooklyn Entire home/apt              1                54
## 979             Manhattan Entire home/apt             14                 1
## 980              Brooklyn Entire home/apt              6                39
## 981              Brooklyn Entire home/apt              1               145
## 982             Manhattan    Private room              3                28
## 983              Brooklyn Entire home/apt              2               206
## 984             Manhattan Entire home/apt              7                 4
## 985              Brooklyn Entire home/apt             15                37
## 986             Manhattan    Private room             30                27
## 987             Manhattan Entire home/apt             30                18
## 988             Manhattan    Private room              1               134
## 989             Manhattan Entire home/apt              2               197
## 990             Manhattan Entire home/apt              7                 5
## 991              Brooklyn Entire home/apt             28                 5
## 992              Brooklyn Entire home/apt              4                 8
## 993              Brooklyn    Private room              2                62
## 994             Manhattan    Private room              2                13
## 995             Manhattan Entire home/apt              1                 8
## 996             Manhattan Entire home/apt              3                50
## 997                Queens    Private room            180                69
## 998              Brooklyn Entire home/apt              4                41
## 999              Brooklyn Entire home/apt             20                89
## 1000             Brooklyn Entire home/apt              4                40
## 1001             Brooklyn Entire home/apt              3               106
## 1002            Manhattan Entire home/apt              4                33
## 1003            Manhattan    Private room              5                 2
## 1004            Manhattan Entire home/apt             88                19
## 1005            Manhattan Entire home/apt              6               100
## 1006             Brooklyn Entire home/apt              3                16
## 1007            Manhattan    Private room              2                64
## 1008            Manhattan    Private room              1                17
## 1009            Manhattan    Private room              2                 7
## 1010             Brooklyn Entire home/apt            115                15
## 1011            Manhattan Entire home/apt              5                 4
## 1012             Brooklyn Entire home/apt              3                87
## 1013             Brooklyn    Private room            150                10
## 1014               Queens Entire home/apt              3               289
## 1015            Manhattan Entire home/apt              9                10
## 1016            Manhattan Entire home/apt             14                39
## 1017             Brooklyn Entire home/apt              7                 7
## 1018                Bronx    Private room              1                23
## 1019            Manhattan Entire home/apt              4                22
## 1020            Manhattan    Private room              1                 1
## 1021             Brooklyn Entire home/apt              2                 5
## 1022               Queens    Private room              5                30
## 1023               Queens    Private room              7                55
## 1024             Brooklyn    Private room              1               155
## 1025            Manhattan    Private room              1                95
## 1026             Brooklyn    Private room              2               118
## 1027                Bronx Entire home/apt              5                82
## 1028             Brooklyn    Private room              5               105
## 1029            Manhattan Entire home/apt              3                73
## 1030             Brooklyn    Private room              7                28
## 1031             Brooklyn Entire home/apt              1                 3
## 1032             Brooklyn Entire home/apt              3               120
## 1033             Brooklyn    Private room              2               339
## 1034             Brooklyn Entire home/apt              2                 7
## 1035            Manhattan Entire home/apt              4                13
## 1036             Brooklyn    Private room             21                 6
## 1037            Manhattan    Private room              1                 3
## 1038            Manhattan Entire home/apt             20                11
## 1039            Manhattan Entire home/apt              2                67
## 1040            Manhattan Entire home/apt              2               123
## 1041            Manhattan    Private room              4               109
## 1042            Manhattan Entire home/apt              4                23
## 1043            Manhattan Entire home/apt              2               269
## 1044            Manhattan Entire home/apt              3                 7
## 1045            Manhattan    Private room              3                36
## 1046            Manhattan Entire home/apt              1               178
## 1047             Brooklyn    Private room              4               132
## 1048             Brooklyn Entire home/apt              3                12
## 1049            Manhattan Entire home/apt              2                23
## 1050            Manhattan Entire home/apt              2                47
## 1051            Manhattan Entire home/apt              8                 8
## 1052             Brooklyn Entire home/apt              3                17
## 1053            Manhattan    Private room              5                 4
## 1054             Brooklyn Entire home/apt             90                19
## 1055             Brooklyn    Private room              7                 2
## 1056             Brooklyn Entire home/apt              2                35
## 1057             Brooklyn Entire home/apt              3               108
## 1058             Brooklyn Entire home/apt              3               182
## 1059            Manhattan Entire home/apt              3                31
## 1060               Queens     Shared room              1               454
## 1061            Manhattan    Private room              2               199
## 1062            Manhattan Entire home/apt              1               230
## 1063             Brooklyn    Private room              4               101
## 1064            Manhattan    Private room              2                 8
## 1065             Brooklyn Entire home/apt             30               154
## 1066            Manhattan    Private room             28                69
## 1067            Manhattan Entire home/apt             10                 3
## 1068             Brooklyn Entire home/apt             14                 3
## 1069             Brooklyn    Private room              4                12
## 1070            Manhattan Entire home/apt              5                13
## 1071             Brooklyn Entire home/apt              2                10
## 1072             Brooklyn Entire home/apt             15                 5
## 1073               Queens    Private room              1               144
## 1074             Brooklyn Entire home/apt              5                10
## 1075             Brooklyn Entire home/apt              2                17
## 1076            Manhattan Entire home/apt             30                57
## 1077            Manhattan Entire home/apt             30                70
## 1078            Manhattan Entire home/apt             30                62
## 1079            Manhattan Entire home/apt              6                17
## 1080            Manhattan    Private room              1               439
## 1081            Manhattan    Private room              4                48
## 1082            Manhattan Entire home/apt              3               134
## 1083             Brooklyn Entire home/apt              6                 2
## 1084            Manhattan Entire home/apt              3                16
## 1085             Brooklyn Entire home/apt              2                31
## 1086             Brooklyn Entire home/apt             30                36
## 1087               Queens    Private room              3                 1
## 1088             Brooklyn Entire home/apt              2               338
## 1089            Manhattan    Private room              3               117
## 1090            Manhattan Entire home/apt              1               261
## 1091            Manhattan Entire home/apt             30                32
## 1092             Brooklyn    Private room              2               112
## 1093             Brooklyn    Private room              2                22
## 1094            Manhattan Entire home/apt              2               319
## 1095             Brooklyn Entire home/apt              7                69
## 1096             Brooklyn Entire home/apt              4                10
## 1097             Brooklyn Entire home/apt              2                24
## 1098             Brooklyn Entire home/apt             30                 3
## 1099             Brooklyn    Private room             31                17
## 1100             Brooklyn Entire home/apt              7                13
## 1101             Brooklyn Entire home/apt              2                58
## 1102            Manhattan Entire home/apt              2                62
## 1103             Brooklyn Entire home/apt              3               203
## 1104             Brooklyn    Private room              2                33
## 1105            Manhattan    Private room              3                47
## 1106            Manhattan Entire home/apt             14                30
## 1107             Brooklyn Entire home/apt              3                 2
## 1108             Brooklyn    Private room              2               121
## 1109             Brooklyn Entire home/apt              3                27
## 1110            Manhattan Entire home/apt              3                24
## 1111            Manhattan Entire home/apt              5                22
## 1112            Manhattan Entire home/apt              2               162
## 1113             Brooklyn Entire home/apt              1                66
## 1114            Manhattan Entire home/apt              2                63
## 1115               Queens    Private room              1               219
## 1116             Brooklyn Entire home/apt              4                 2
## 1117             Brooklyn Entire home/apt              3                12
## 1118             Brooklyn    Private room              2                35
## 1119             Brooklyn    Private room              1               124
## 1120                Bronx    Private room              7                 2
## 1121             Brooklyn Entire home/apt              4                63
## 1122            Manhattan Entire home/apt              4               162
## 1123             Brooklyn    Private room              3               103
## 1124            Manhattan    Private room             30               185
## 1125             Brooklyn    Private room              4               219
## 1126            Manhattan    Private room              1               280
## 1127            Manhattan     Shared room              1                61
## 1128             Brooklyn    Private room              1               184
## 1129             Brooklyn Entire home/apt              3               116
## 1130        Staten Island    Private room              2                11
## 1131            Manhattan Entire home/apt              3                 9
## 1132             Brooklyn Entire home/apt              5                 4
## 1133             Brooklyn Entire home/apt              2                15
## 1134            Manhattan Entire home/apt              4                22
## 1135            Manhattan Entire home/apt              3                18
## 1136             Brooklyn Entire home/apt              3                56
## 1137            Manhattan Entire home/apt              4                 2
## 1138            Manhattan Entire home/apt              3                57
## 1139            Manhattan Entire home/apt              4                13
## 1140            Manhattan    Private room              1                 1
## 1141             Brooklyn    Private room              2                37
## 1142            Manhattan    Private room              5               451
## 1143               Queens Entire home/apt             30                24
## 1144            Manhattan Entire home/apt              7                19
## 1145                Bronx    Private room              3               190
## 1146             Brooklyn    Private room              2                46
## 1147             Brooklyn Entire home/apt              1               169
## 1148            Manhattan Entire home/apt              2               165
## 1149            Manhattan Entire home/apt              3                 2
## 1150             Brooklyn Entire home/apt              3                 1
## 1151             Brooklyn Entire home/apt              5                 3
## 1152            Manhattan Entire home/apt              1                15
## 1153             Brooklyn Entire home/apt              3                60
## 1154             Brooklyn Entire home/apt              2               320
## 1155               Queens Entire home/apt              2               182
## 1156             Brooklyn Entire home/apt             30                 1
## 1157             Brooklyn Entire home/apt              2               134
## 1158             Brooklyn Entire home/apt             10                10
## 1159            Manhattan Entire home/apt              1                60
## 1160             Brooklyn Entire home/apt             30                 5
## 1161            Manhattan Entire home/apt              5                 9
## 1162             Brooklyn Entire home/apt              3                 1
## 1163             Brooklyn Entire home/apt             10                33
## 1164             Brooklyn    Private room              1                10
## 1165               Queens Entire home/apt             30                 3
## 1166            Manhattan    Private room              3                10
## 1167             Brooklyn Entire home/apt             30                62
## 1168            Manhattan Entire home/apt              4               266
## 1169               Queens    Private room              2               251
## 1170             Brooklyn Entire home/apt             14                 3
## 1171            Manhattan    Private room              7                 8
## 1172             Brooklyn    Private room              4                 5
## 1173             Brooklyn    Private room              4               160
## 1174               Queens Entire home/apt              5                 5
## 1175            Manhattan    Private room              2               183
## 1176             Brooklyn Entire home/apt              5                19
## 1177            Manhattan Entire home/apt              3               141
## 1178            Manhattan Entire home/apt              6                42
## 1179                Bronx Entire home/apt              3               119
## 1180             Brooklyn Entire home/apt              7                20
## 1181            Manhattan Entire home/apt              5                 5
## 1182            Manhattan    Private room              2                16
## 1183            Manhattan Entire home/apt              2                24
## 1184            Manhattan Entire home/apt              3                26
## 1185            Manhattan    Private room             30                 3
## 1186             Brooklyn    Private room             10                 5
## 1187            Manhattan Entire home/apt              4                 2
## 1188            Manhattan Entire home/apt              3               194
## 1189            Manhattan    Private room             14                88
## 1190             Brooklyn Entire home/apt              5                 2
## 1191               Queens    Private room             30               304
## 1192             Brooklyn Entire home/apt              2                11
## 1193            Manhattan Entire home/apt             30                19
## 1194             Brooklyn Entire home/apt              7                23
## 1195            Manhattan    Private room              5               103
## 1196             Brooklyn Entire home/apt              7                82
## 1197            Manhattan Entire home/apt             30                92
## 1198            Manhattan Entire home/apt             30                66
## 1199             Brooklyn Entire home/apt              3                18
## 1200            Manhattan Entire home/apt              4               153
## 1201            Manhattan Entire home/apt              6                 6
## 1202             Brooklyn    Private room              7                43
## 1203            Manhattan Entire home/apt              3                36
## 1204             Brooklyn    Private room             10                19
## 1205            Manhattan Entire home/apt              2               160
## 1206               Queens Entire home/apt              3                74
## 1207            Manhattan Entire home/apt              1                47
## 1208            Manhattan Entire home/apt              2                43
## 1209            Manhattan Entire home/apt              1               102
## 1210            Manhattan    Private room              6                18
## 1211             Brooklyn Entire home/apt              4                33
## 1212            Manhattan Entire home/apt             30                60
## 1213            Manhattan Entire home/apt              3                22
## 1214               Queens Entire home/apt              5               107
## 1215            Manhattan    Private room              4                87
## 1216            Manhattan Entire home/apt             10                16
## 1217             Brooklyn    Private room              3                 2
## 1218             Brooklyn    Private room              4                19
## 1219               Queens    Private room              1               474
## 1220             Brooklyn Entire home/apt              4                 5
## 1221            Manhattan Entire home/apt              2                63
## 1222             Brooklyn Entire home/apt              3                28
## 1223            Manhattan Entire home/apt              2                 5
## 1224            Manhattan Entire home/apt              4                16
## 1225             Brooklyn    Private room             20                 6
## 1226            Manhattan Entire home/apt              3                25
## 1227            Manhattan Entire home/apt              3                15
## 1228            Manhattan Entire home/apt              1                45
## 1229             Brooklyn Entire home/apt              1               215
## 1230            Manhattan Entire home/apt              3                33
## 1231             Brooklyn Entire home/apt              2                46
## 1232            Manhattan Entire home/apt             10                25
## 1233             Brooklyn    Private room              2                23
## 1234             Brooklyn Entire home/apt              2                57
## 1235            Manhattan    Private room              6                80
## 1236             Brooklyn Entire home/apt             11                22
## 1237             Brooklyn Entire home/apt              5                40
## 1238            Manhattan Entire home/apt              3                85
## 1239             Brooklyn Entire home/apt              4                 1
## 1240            Manhattan Entire home/apt             14                29
## 1241            Manhattan Entire home/apt              5                 1
## 1242            Manhattan Entire home/apt             30                23
## 1243            Manhattan    Private room              2                42
## 1244            Manhattan Entire home/apt              1               195
## 1245            Manhattan     Shared room              2               158
## 1246             Brooklyn    Private room              2                 1
## 1247            Manhattan    Private room              1               115
## 1248             Brooklyn Entire home/apt              4                42
## 1249             Brooklyn Entire home/apt              5                 3
## 1250             Brooklyn Entire home/apt             90                32
## 1251            Manhattan Entire home/apt              2               214
## 1252             Brooklyn Entire home/apt              2                11
## 1253             Brooklyn Entire home/apt              2               221
## 1254             Brooklyn    Private room              1               123
## 1255            Manhattan    Private room              1               132
## 1256             Brooklyn    Private room             30                41
## 1257             Brooklyn Entire home/apt              4               104
## 1258            Manhattan Entire home/apt             30                18
## 1259             Brooklyn    Private room              2               143
## 1260            Manhattan    Private room             28                 4
## 1261            Manhattan Entire home/apt              3                25
## 1262            Manhattan Entire home/apt              4                 4
## 1263               Queens Entire home/apt             45               198
## 1264            Manhattan Entire home/apt              5                 6
## 1265             Brooklyn    Private room              7                10
## 1266            Manhattan    Private room             19                30
## 1267             Brooklyn Entire home/apt              2                 4
## 1268             Brooklyn    Private room              2               201
## 1269            Manhattan    Private room              2                51
## 1270             Brooklyn Entire home/apt             30                63
## 1271             Brooklyn    Private room              2                28
## 1272               Queens Entire home/apt              1                55
## 1273             Brooklyn    Private room              5                 1
## 1274               Queens    Private room             40                23
## 1275             Brooklyn Entire home/apt              4                61
## 1276            Manhattan Entire home/apt             60                 5
## 1277            Manhattan    Private room              2                67
## 1278            Manhattan Entire home/apt             30               110
## 1279             Brooklyn Entire home/apt              2               160
## 1280             Brooklyn Entire home/apt              3               102
## 1281             Brooklyn    Private room              2                 5
## 1282             Brooklyn    Private room              5                 1
## 1283            Manhattan Entire home/apt              7                34
## 1284             Brooklyn Entire home/apt             30                 6
## 1285             Brooklyn    Private room              1                61
## 1286            Manhattan Entire home/apt             60                11
## 1287             Brooklyn Entire home/apt             30                 1
## 1288            Manhattan    Private room              5                46
## 1289            Manhattan    Private room              1               132
## 1290            Manhattan    Private room              1                62
## 1291             Brooklyn Entire home/apt             10                 8
## 1292             Brooklyn Entire home/apt              3                16
## 1293             Brooklyn    Private room              2                19
## 1294               Queens Entire home/apt              2                17
## 1295            Manhattan Entire home/apt              7                12
## 1296            Manhattan Entire home/apt              1               321
## 1297            Manhattan    Private room              4               160
## 1298            Manhattan    Private room              4               142
## 1299            Manhattan Entire home/apt              1                 5
## 1300            Manhattan Entire home/apt              6                61
## 1301             Brooklyn    Private room              3                 5
## 1302            Manhattan    Private room             30                36
## 1303             Brooklyn Entire home/apt              1               109
## 1304               Queens    Private room              3                28
## 1305             Brooklyn Entire home/apt              4                14
## 1306             Brooklyn Entire home/apt              2               250
## 1307            Manhattan Entire home/apt              4                12
## 1308             Brooklyn Entire home/apt              2                20
## 1309             Brooklyn Entire home/apt             14                27
## 1310             Brooklyn    Private room              2                73
## 1311             Brooklyn Entire home/apt              3                 2
## 1312             Brooklyn Entire home/apt              5                38
## 1313             Brooklyn Entire home/apt             14                 5
## 1314             Brooklyn    Private room              3                31
## 1315            Manhattan Entire home/apt              2                17
## 1316            Manhattan Entire home/apt              3                35
## 1317             Brooklyn Entire home/apt             30                63
## 1318            Manhattan Entire home/apt              7               149
## 1319            Manhattan    Private room             20               107
## 1320             Brooklyn Entire home/apt              5                 7
## 1321               Queens Entire home/apt              3                48
## 1322             Brooklyn Entire home/apt              3                54
## 1323             Brooklyn Entire home/apt             31                17
## 1324             Brooklyn Entire home/apt              2               103
## 1325            Manhattan Entire home/apt              3               243
## 1326            Manhattan    Private room              3                93
## 1327            Manhattan Entire home/apt              2                54
## 1328            Manhattan Entire home/apt             30                 2
## 1329             Brooklyn    Private room             28                88
## 1330             Brooklyn Entire home/apt             30                15
## 1331             Brooklyn Entire home/apt              3                25
## 1332             Brooklyn Entire home/apt              4                11
## 1333             Brooklyn    Private room             30                17
## 1334             Brooklyn    Private room              3                 5
## 1335            Manhattan    Private room              2                28
## 1336            Manhattan Entire home/apt             30                 8
## 1337            Manhattan Entire home/apt              2                15
## 1338             Brooklyn Entire home/apt              3                 2
## 1339             Brooklyn Entire home/apt              4                40
## 1340            Manhattan Entire home/apt              7                57
## 1341            Manhattan Entire home/apt             14                 6
## 1342            Manhattan Entire home/apt              4                57
## 1343             Brooklyn Entire home/apt              3                22
## 1344            Manhattan Entire home/apt              8                 6
## 1345            Manhattan Entire home/apt              1                17
## 1346             Brooklyn    Private room              2                14
## 1347            Manhattan    Private room              1               160
## 1348             Brooklyn Entire home/apt              2                85
## 1349               Queens    Private room              1               165
## 1350            Manhattan     Shared room              2                13
## 1351            Manhattan Entire home/apt             30                44
## 1352            Manhattan Entire home/apt              4                51
## 1353             Brooklyn Entire home/apt              2               179
## 1354             Brooklyn    Private room              2               206
## 1355            Manhattan Entire home/apt              5                 4
## 1356             Brooklyn    Private room             14                 2
## 1357               Queens    Private room              3                 1
## 1358            Manhattan Entire home/apt              4                 2
## 1359             Brooklyn Entire home/apt              5                 3
## 1360            Manhattan    Private room              2                19
## 1361        Staten Island Entire home/apt              3                59
## 1362            Manhattan Entire home/apt              6                 1
## 1363            Manhattan Entire home/apt              5                 1
## 1364             Brooklyn    Private room              3               254
## 1365            Manhattan    Private room              2               129
## 1366            Manhattan Entire home/apt             30                11
## 1367             Brooklyn Entire home/apt             20                32
## 1368            Manhattan Entire home/apt              5                 8
## 1369            Manhattan    Private room              2               261
## 1370             Brooklyn    Private room              2                 3
## 1371        Staten Island    Private room              2                23
## 1372            Manhattan Entire home/apt              5               108
## 1373            Manhattan    Private room              3                 9
## 1374            Manhattan    Private room              2               248
## 1375               Queens    Private room              4               107
## 1376            Manhattan    Private room              3                41
## 1377            Manhattan Entire home/apt              4                43
## 1378            Manhattan    Private room              3                39
## 1379             Brooklyn     Shared room              4                31
## 1380             Brooklyn    Private room              6                 6
## 1381             Brooklyn Entire home/apt              3                18
## 1382            Manhattan Entire home/apt             20                29
## 1383            Manhattan Entire home/apt              1                11
## 1384            Manhattan    Private room              4               161
## 1385             Brooklyn Entire home/apt              1                39
## 1386             Brooklyn Entire home/apt              7                 2
## 1387            Manhattan Entire home/apt              5                59
## 1388            Manhattan    Private room              1               323
## 1389             Brooklyn Entire home/apt              3                56
## 1390            Manhattan Entire home/apt             30                 3
## 1391            Manhattan Entire home/apt             30                 2
## 1392            Manhattan Entire home/apt             30                 2
## 1393            Manhattan Entire home/apt             30                 3
## 1394            Manhattan Entire home/apt             30                 1
## 1395            Manhattan Entire home/apt              3                58
## 1396            Manhattan Entire home/apt              3                10
## 1397            Manhattan Entire home/apt              2                83
## 1398            Manhattan Entire home/apt              4                12
## 1399             Brooklyn Entire home/apt              3                 1
## 1400            Manhattan Entire home/apt              7                10
## 1401             Brooklyn    Private room              1                48
## 1402            Manhattan Entire home/apt             16                 5
## 1403             Brooklyn Entire home/apt              3                15
## 1404            Manhattan    Private room              1               347
## 1405            Manhattan Entire home/apt              1               108
## 1406             Brooklyn Entire home/apt              3               163
## 1407            Manhattan Entire home/apt              3               182
## 1408            Manhattan    Private room              1                37
## 1409               Queens    Private room              1                30
## 1410             Brooklyn    Private room             60                 3
## 1411            Manhattan Entire home/apt              3                46
## 1412             Brooklyn Entire home/apt              2               211
## 1413            Manhattan    Private room              1                93
## 1414            Manhattan Entire home/apt              2                10
## 1415            Manhattan Entire home/apt              4                72
## 1416            Manhattan Entire home/apt             30                59
## 1417            Manhattan Entire home/apt              2                18
## 1418            Manhattan    Private room              5                 6
## 1419             Brooklyn Entire home/apt             31                15
## 1420             Brooklyn Entire home/apt              4                78
## 1421            Manhattan Entire home/apt              3                17
## 1422             Brooklyn Entire home/apt              4                15
## 1423            Manhattan    Private room              7                 1
## 1424             Brooklyn    Private room              5                69
## 1425             Brooklyn Entire home/apt             31               114
## 1426            Manhattan    Private room              3               161
## 1427             Brooklyn    Private room              5                70
## 1428            Manhattan Entire home/apt              2                46
## 1429             Brooklyn Entire home/apt              5                19
## 1430             Brooklyn Entire home/apt              3               162
## 1431             Brooklyn    Private room              2                70
## 1432               Queens    Private room             14                11
## 1433            Manhattan    Private room              2                 2
## 1434            Manhattan    Private room              5                39
## 1435               Queens    Private room              2                56
## 1436               Queens Entire home/apt              3                 1
## 1437               Queens    Private room              2                35
## 1438            Manhattan    Private room              5                32
## 1439               Queens    Private room              2                 1
## 1440            Manhattan Entire home/apt             21                12
## 1441            Manhattan    Private room              2               211
## 1442        Staten Island    Private room              2                48
## 1443             Brooklyn Entire home/apt              2               219
## 1444            Manhattan    Private room              3               218
## 1445            Manhattan Entire home/apt              6                40
## 1446            Manhattan Entire home/apt             14                37
## 1447               Queens    Private room             20                28
## 1448            Manhattan    Private room              3                66
## 1449            Manhattan Entire home/apt             30                43
## 1450            Manhattan Entire home/apt             30                 9
## 1451             Brooklyn    Private room              3                13
## 1452            Manhattan    Private room              1                60
## 1453             Brooklyn Entire home/apt              4                19
## 1454               Queens    Private room              1               296
## 1455            Manhattan    Private room              1                96
## 1456             Brooklyn Entire home/apt              2                77
## 1457             Brooklyn Entire home/apt              1               115
## 1458             Brooklyn Entire home/apt              1               294
## 1459             Brooklyn Entire home/apt              3                66
## 1460             Brooklyn Entire home/apt              7                 4
## 1461            Manhattan Entire home/apt              3                39
## 1462             Brooklyn Entire home/apt              4               173
## 1463             Brooklyn    Private room              2               295
## 1464             Brooklyn Entire home/apt              4                62
## 1465             Brooklyn    Private room              2               138
## 1466            Manhattan Entire home/apt             30                27
## 1467            Manhattan Entire home/apt             30                96
## 1468             Brooklyn Entire home/apt              2               119
## 1469             Brooklyn    Private room              5                 8
## 1470            Manhattan Entire home/apt             30               100
## 1471             Brooklyn Entire home/apt              5                 1
## 1472            Manhattan Entire home/apt              3                89
## 1473            Manhattan    Private room              2               176
## 1474            Manhattan    Private room              4                31
## 1475             Brooklyn Entire home/apt              4               239
## 1476            Manhattan Entire home/apt              2                79
## 1477            Manhattan    Private room             10                13
## 1478            Manhattan    Private room             14                11
## 1479            Manhattan Entire home/apt             80                 5
## 1480             Brooklyn    Private room              2                13
## 1481             Brooklyn    Private room              4               190
## 1482             Brooklyn Entire home/apt              1               404
## 1483            Manhattan Entire home/apt              2                27
## 1484             Brooklyn Entire home/apt              4                79
## 1485             Brooklyn    Private room              2                14
## 1486             Brooklyn    Private room              3                32
## 1487             Brooklyn Entire home/apt              3                76
## 1488            Manhattan Entire home/apt              1                 7
## 1489            Manhattan Entire home/apt              7                11
## 1490             Brooklyn    Private room              5                18
## 1491               Queens Entire home/apt              3                60
## 1492        Staten Island    Private room             30                59
## 1493             Brooklyn Entire home/apt             15                22
## 1494             Brooklyn    Private room              3                 2
## 1495            Manhattan Entire home/apt              7               104
## 1496            Manhattan Entire home/apt              3                 6
## 1497            Manhattan    Private room              3               326
## 1498               Queens    Private room             28                55
## 1499            Manhattan Entire home/apt              5                56
## 1500             Brooklyn Entire home/apt              3                51
## 1501            Manhattan Entire home/apt              5                 7
## 1502            Manhattan Entire home/apt              5                86
## 1503        Staten Island    Private room             30                36
## 1504             Brooklyn    Private room              2                75
## 1505             Brooklyn Entire home/apt              1               363
## 1506             Brooklyn    Private room              2               146
## 1507               Queens Entire home/apt              3                51
## 1508               Queens Entire home/apt              3                55
## 1509             Brooklyn    Private room              5                 1
## 1510            Manhattan Entire home/apt              3                29
## 1511             Brooklyn    Private room             14                30
## 1512                Bronx    Private room              2               169
## 1513             Brooklyn Entire home/apt              4                 1
## 1514             Brooklyn    Private room              2                 8
## 1515             Brooklyn Entire home/apt              3                12
## 1516            Manhattan    Private room              3                19
## 1517             Brooklyn Entire home/apt              5                 9
## 1518            Manhattan    Private room              1                 5
## 1519            Manhattan Entire home/apt              5                17
## 1520            Manhattan Entire home/apt              4                70
## 1521            Manhattan Entire home/apt              1                 1
## 1522             Brooklyn    Private room              5                 1
## 1523            Manhattan Entire home/apt              3                17
## 1524            Manhattan Entire home/apt              2                59
## 1525            Manhattan Entire home/apt              5                62
## 1526            Manhattan    Private room             10                 6
## 1527            Manhattan Entire home/apt              2                33
## 1528             Brooklyn Entire home/apt              2               158
## 1529             Brooklyn Entire home/apt              4                 8
## 1530             Brooklyn    Private room              2               129
## 1531               Queens Entire home/apt              6                 1
## 1532             Brooklyn Entire home/apt              3                50
## 1533             Brooklyn Entire home/apt              3               116
## 1534             Brooklyn    Private room              6                89
## 1535             Brooklyn Entire home/apt              1                17
## 1536             Brooklyn    Private room              2               164
## 1537            Manhattan    Private room              7                67
## 1538            Manhattan    Private room              1               135
## 1539            Manhattan Entire home/apt             30                 3
## 1540             Brooklyn    Private room              1               139
## 1541            Manhattan Entire home/apt              2                23
## 1542             Brooklyn    Private room              3                51
## 1543            Manhattan Entire home/apt              3               203
## 1544             Brooklyn    Private room              2               164
## 1545            Manhattan Entire home/apt              1                 6
## 1546            Manhattan    Private room              1               327
## 1547            Manhattan Entire home/apt              7                10
## 1548            Manhattan Entire home/apt            181                82
## 1549            Manhattan Entire home/apt              2               111
## 1550            Manhattan Entire home/apt              7                 6
## 1551             Brooklyn    Private room              5                35
## 1552            Manhattan    Private room             26                57
## 1553             Brooklyn     Shared room              2                80
## 1554        Staten Island Entire home/apt              4                 1
## 1555            Manhattan Entire home/apt             30                 4
## 1556            Manhattan Entire home/apt             30                 8
## 1557               Queens    Private room              7                39
## 1558             Brooklyn    Private room              2                27
## 1559            Manhattan Entire home/apt             30                 3
## 1560            Manhattan Entire home/apt             14                10
## 1561            Manhattan Entire home/apt              2                 1
## 1562             Brooklyn Entire home/apt             30                21
## 1563            Manhattan Entire home/apt              1               237
## 1564            Manhattan Entire home/apt              2                20
## 1565            Manhattan    Private room              7                 2
## 1566            Manhattan Entire home/apt              7                66
## 1567            Manhattan Entire home/apt              2                 7
## 1568             Brooklyn Entire home/apt              1               273
## 1569             Brooklyn    Private room              5                60
## 1570            Manhattan Entire home/apt             28                19
## 1571            Manhattan Entire home/apt              1                 2
## 1572            Manhattan Entire home/apt              7                83
## 1573            Manhattan Entire home/apt              3               219
## 1574             Brooklyn    Private room              3               270
## 1575            Manhattan    Private room              5                18
## 1576            Manhattan    Private room              4               132
## 1577             Brooklyn Entire home/apt              3               151
## 1578             Brooklyn Entire home/apt              1                 3
## 1579             Brooklyn    Private room              2               167
## 1580            Manhattan Entire home/apt              4               213
## 1581               Queens     Shared room              5                 2
## 1582             Brooklyn Entire home/apt              3                12
## 1583            Manhattan    Private room              1               353
## 1584             Brooklyn Entire home/apt              3                 3
## 1585             Brooklyn Entire home/apt              1                 3
## 1586             Brooklyn Entire home/apt             10                 4
## 1587             Brooklyn    Private room              1               113
## 1588            Manhattan Entire home/apt              4                11
## 1589               Queens Entire home/apt              3                17
## 1590            Manhattan Entire home/apt              3                46
## 1591             Brooklyn Entire home/apt             21                52
## 1592            Manhattan Entire home/apt             10                10
## 1593            Manhattan    Private room              5                64
## 1594             Brooklyn Entire home/apt              3               104
## 1595            Manhattan    Private room              4                75
## 1596             Brooklyn Entire home/apt              5               227
## 1597               Queens    Private room             30                13
## 1598                Bronx Entire home/apt              2               189
## 1599            Manhattan Entire home/apt             14                 1
## 1600             Brooklyn    Private room              3                10
## 1601             Brooklyn Entire home/apt              3                61
## 1602            Manhattan Entire home/apt              4                 3
## 1603             Brooklyn Entire home/apt              2                27
## 1604             Brooklyn Entire home/apt              7                 1
## 1605             Brooklyn    Private room              4                32
## 1606            Manhattan Entire home/apt              6                22
## 1607            Manhattan Entire home/apt              5                63
## 1608               Queens Entire home/apt              5                15
## 1609               Queens    Private room              2                72
## 1610             Brooklyn    Private room              2                58
## 1611            Manhattan Entire home/apt              3                 9
## 1612             Brooklyn    Private room              3               169
## 1613             Brooklyn    Private room              3                 2
## 1614             Brooklyn    Private room              3                66
## 1615            Manhattan Entire home/apt              4                24
## 1616               Queens Entire home/apt              3                 1
## 1617             Brooklyn Entire home/apt              8               108
## 1618             Brooklyn     Shared room              3                19
## 1619             Brooklyn    Private room              2                91
## 1620               Queens Entire home/apt              2                67
## 1621             Brooklyn Entire home/apt             13                64
## 1622             Brooklyn Entire home/apt             90                 4
## 1623               Queens    Private room             80                 3
## 1624             Brooklyn    Private room              2                77
## 1625             Brooklyn Entire home/apt              1                41
## 1626            Manhattan Entire home/apt              7                 2
## 1627             Brooklyn Entire home/apt              3                 4
## 1628            Manhattan    Private room             30                 1
## 1629            Manhattan    Private room              7                 1
## 1630             Brooklyn Entire home/apt              2               302
## 1631            Manhattan Entire home/apt              1                 1
## 1632            Manhattan Entire home/apt             29                 3
## 1633             Brooklyn Entire home/apt              3                13
## 1634            Manhattan Entire home/apt              3               276
## 1635            Manhattan Entire home/apt              3                22
## 1636                Bronx    Private room              1               187
## 1637             Brooklyn    Private room             10                 1
## 1638            Manhattan    Private room              2               138
## 1639               Queens    Private room              2                31
## 1640            Manhattan     Shared room              2                13
## 1641            Manhattan    Private room              4                12
## 1642            Manhattan Entire home/apt              4                97
## 1643               Queens    Private room              1               153
## 1644             Brooklyn Entire home/apt              5                72
## 1645             Brooklyn Entire home/apt              2                72
## 1646             Brooklyn Entire home/apt              5                52
## 1647             Brooklyn    Private room              1                28
## 1648            Manhattan    Private room              3                 2
## 1649            Manhattan Entire home/apt             30                18
## 1650            Manhattan Entire home/apt              2                 8
## 1651            Manhattan Entire home/apt              3                 3
## 1652             Brooklyn Entire home/apt              7                 4
## 1653                Bronx    Private room              3                86
## 1654             Brooklyn Entire home/apt              5                 7
## 1655            Manhattan Entire home/apt              2                68
## 1656            Manhattan Entire home/apt              2               185
## 1657            Manhattan    Private room              7                48
## 1658               Queens    Private room              1               148
## 1659             Brooklyn Entire home/apt              2                 8
## 1660             Brooklyn Entire home/apt              2                67
## 1661            Manhattan    Private room              1               148
## 1662             Brooklyn    Private room             20                 1
## 1663            Manhattan Entire home/apt             25                 1
## 1664            Manhattan    Private room              2               211
## 1665            Manhattan Entire home/apt              5                18
## 1666             Brooklyn    Private room              1               168
## 1667            Manhattan Entire home/apt              1                50
## 1668            Manhattan Entire home/apt              7                11
## 1669             Brooklyn Entire home/apt              3               121
## 1670            Manhattan Entire home/apt              1               108
## 1671             Brooklyn Entire home/apt              4                10
## 1672            Manhattan    Private room              7                46
## 1673            Manhattan Entire home/apt              2                34
## 1674            Manhattan    Private room              2                25
## 1675            Manhattan Entire home/apt             10                11
## 1676            Manhattan Entire home/apt              9                 2
## 1677                Bronx Entire home/apt              1                25
## 1678            Manhattan Entire home/apt              2                 4
## 1679            Manhattan Entire home/apt              2               260
## 1680            Manhattan    Private room              1                52
## 1681            Manhattan Entire home/apt             30                48
## 1682             Brooklyn    Private room             14                12
## 1683            Manhattan Entire home/apt              6                23
## 1684             Brooklyn Entire home/apt            265                20
## 1685             Brooklyn Entire home/apt            300                13
## 1686            Manhattan Entire home/apt              6                13
## 1687            Manhattan    Private room              2                93
## 1688            Manhattan Entire home/apt              7                 3
## 1689             Brooklyn    Private room              3                62
## 1690            Manhattan    Private room             26                58
## 1691            Manhattan Entire home/apt             14                 7
## 1692             Brooklyn Entire home/apt              4                12
## 1693            Manhattan Entire home/apt             25                 1
## 1694             Brooklyn    Private room              5                 5
## 1695             Brooklyn Entire home/apt              4                13
## 1696             Brooklyn    Private room              2                32
## 1697            Manhattan Entire home/apt              3                26
## 1698            Manhattan Entire home/apt              3                 1
## 1699            Manhattan Entire home/apt              3               186
## 1700             Brooklyn Entire home/apt              5               154
## 1701            Manhattan Entire home/apt             30                 5
## 1702            Manhattan Entire home/apt              2                41
## 1703             Brooklyn Entire home/apt             17                 3
## 1704             Brooklyn Entire home/apt              1                 3
## 1705             Brooklyn    Private room              8                32
## 1706             Brooklyn Entire home/apt             10                 6
## 1707            Manhattan Entire home/apt              5                39
## 1708             Brooklyn    Private room              2                25
## 1709            Manhattan    Private room              1               190
## 1710            Manhattan Entire home/apt              4                16
## 1711             Brooklyn Entire home/apt              4                 6
## 1712            Manhattan Entire home/apt             30                47
## 1713             Brooklyn Entire home/apt              7                 2
## 1714            Manhattan    Private room              3                61
## 1715             Brooklyn Entire home/apt              5                 5
## 1716            Manhattan    Private room              1                33
## 1717             Brooklyn Entire home/apt              5                 2
## 1718             Brooklyn Entire home/apt              4                13
## 1719             Brooklyn    Private room              2                36
## 1720               Queens    Private room              3                89
## 1721               Queens    Private room              3               125
## 1722             Brooklyn    Private room              5                 5
## 1723             Brooklyn Entire home/apt              4                 1
## 1724            Manhattan Entire home/apt              7                 3
## 1725            Manhattan    Private room              1                 1
## 1726               Queens    Private room              3                12
## 1727            Manhattan Entire home/apt             45                16
## 1728             Brooklyn Entire home/apt             30                19
## 1729            Manhattan    Private room              4               150
## 1730             Brooklyn    Private room             10                15
## 1731             Brooklyn Entire home/apt              5                 2
## 1732            Manhattan Entire home/apt              3                 3
## 1733            Manhattan Entire home/apt              7                 8
## 1734             Brooklyn Entire home/apt              5                42
## 1735            Manhattan Entire home/apt              7                 7
## 1736             Brooklyn    Private room              4                 1
## 1737             Brooklyn Entire home/apt              3                 1
## 1738             Brooklyn    Private room              1                61
## 1739             Brooklyn Entire home/apt              3                76
## 1740            Manhattan Entire home/apt              2                52
## 1741             Brooklyn    Private room              8                37
## 1742             Brooklyn Entire home/apt             30                36
## 1743            Manhattan Entire home/apt              4                92
## 1744            Manhattan    Private room             10                64
## 1745            Manhattan Entire home/apt              5                23
## 1746             Brooklyn    Private room              2                 2
## 1747            Manhattan Entire home/apt              7                38
## 1748            Manhattan Entire home/apt              3               205
## 1749               Queens Entire home/apt              2               108
## 1750             Brooklyn Entire home/apt              7                 4
## 1751            Manhattan Entire home/apt             30                13
## 1752             Brooklyn    Private room              1                73
## 1753            Manhattan Entire home/apt              2                70
## 1754            Manhattan Entire home/apt              5                29
## 1755               Queens    Private room              2                17
## 1756            Manhattan Entire home/apt              6                23
## 1757            Manhattan    Private room              2                67
## 1758            Manhattan    Private room              2                48
## 1759            Manhattan     Shared room              2               107
## 1760            Manhattan    Private room              2                33
## 1761             Brooklyn Entire home/apt              3               124
## 1762            Manhattan    Private room              2                36
## 1763             Brooklyn    Private room              2                38
## 1764            Manhattan Entire home/apt              2                 6
## 1765             Brooklyn    Private room              2                89
## 1766             Brooklyn Entire home/apt             30                 1
## 1767             Brooklyn    Private room              1                 4
## 1768             Brooklyn Entire home/apt              7                10
## 1769             Brooklyn Entire home/apt              7                41
## 1770             Brooklyn    Private room              2                24
## 1771            Manhattan    Private room              2               251
## 1772            Manhattan    Private room              4                41
## 1773            Manhattan    Private room              5                29
## 1774            Manhattan    Private room              1               322
## 1775             Brooklyn    Private room              1                18
## 1776             Brooklyn    Private room              1                 8
## 1777             Brooklyn Entire home/apt              5                22
## 1778            Manhattan Entire home/apt              1               225
## 1779            Manhattan    Private room             21                79
## 1780             Brooklyn Entire home/apt              8                 7
## 1781        Staten Island    Private room              1                20
## 1782            Manhattan    Private room              4                18
## 1783             Brooklyn    Private room              2                37
## 1784             Brooklyn    Private room              3                36
## 1785            Manhattan    Private room            180                 2
## 1786             Brooklyn    Private room              3               126
## 1787             Brooklyn    Private room              1                84
## 1788            Manhattan Entire home/apt              3                26
## 1789             Brooklyn    Private room              1                37
## 1790             Brooklyn Entire home/apt              2               267
## 1791             Brooklyn Entire home/apt              3                11
## 1792            Manhattan Entire home/apt              5                47
## 1793             Brooklyn    Private room              7                 1
## 1794            Manhattan    Private room              1               137
## 1795            Manhattan Entire home/apt             10                 9
## 1796            Manhattan Entire home/apt              4                 1
## 1797            Manhattan Entire home/apt              7                23
## 1798            Manhattan    Private room             15                 4
## 1799             Brooklyn    Private room             11                11
## 1800            Manhattan    Private room              2               540
## 1801            Manhattan Entire home/apt              7                26
## 1802               Queens Entire home/apt              2                47
## 1803            Manhattan Entire home/apt              3                 5
## 1804            Manhattan Entire home/apt              5                 4
## 1805             Brooklyn Entire home/apt              5               224
## 1806               Queens    Private room              2                26
## 1807             Brooklyn Entire home/apt             10                 8
## 1808             Brooklyn Entire home/apt              2                11
## 1809             Brooklyn Entire home/apt              7                 6
## 1810            Manhattan Entire home/apt              5                15
## 1811             Brooklyn    Private room              2                24
## 1812            Manhattan Entire home/apt              7                 7
## 1813            Manhattan Entire home/apt              3                17
## 1814            Manhattan Entire home/apt              2                66
## 1815             Brooklyn Entire home/apt             14                13
## 1816             Brooklyn Entire home/apt             15                22
## 1817            Manhattan    Private room             10                30
## 1818            Manhattan    Private room              3                26
## 1819            Manhattan Entire home/apt              3                50
## 1820            Manhattan Entire home/apt              4                14
## 1821             Brooklyn    Private room              4                80
## 1822            Manhattan Entire home/apt              7                 1
## 1823            Manhattan Entire home/apt              1                33
## 1824               Queens Entire home/apt             30                15
## 1825            Manhattan Entire home/apt             60                22
## 1826               Queens    Private room              3                 8
## 1827            Manhattan    Private room              1                 4
## 1828             Brooklyn Entire home/apt              1                34
## 1829             Brooklyn Entire home/apt              1               219
## 1830            Manhattan Entire home/apt              6                23
## 1831             Brooklyn    Private room              1                 8
## 1832             Brooklyn Entire home/apt              2                11
## 1833            Manhattan Entire home/apt              2               220
## 1834             Brooklyn Entire home/apt              3                 8
## 1835             Brooklyn    Private room             18                 5
## 1836             Brooklyn    Private room              2                 2
## 1837             Brooklyn    Private room             30                51
## 1838            Manhattan    Private room              1                 7
## 1839            Manhattan Entire home/apt             30                93
## 1840            Manhattan    Private room              2               220
## 1841             Brooklyn Entire home/apt              5                 6
## 1842             Brooklyn Entire home/apt              5                15
## 1843             Brooklyn Entire home/apt              4                20
## 1844            Manhattan Entire home/apt              1               187
## 1845               Queens    Private room              2                17
## 1846             Brooklyn    Private room              3                46
## 1847               Queens    Private room              2                39
## 1848            Manhattan    Private room              2                15
## 1849             Brooklyn Entire home/apt              5               145
## 1850            Manhattan Entire home/apt              4                16
## 1851             Brooklyn Entire home/apt              7                52
## 1852             Brooklyn Entire home/apt              2                82
## 1853            Manhattan Entire home/apt              2                97
## 1854             Brooklyn    Private room              2                35
## 1855            Manhattan Entire home/apt             31                 8
## 1856             Brooklyn Entire home/apt              3               166
## 1857             Brooklyn Entire home/apt              3                38
## 1858            Manhattan Entire home/apt             30                17
## 1859             Brooklyn Entire home/apt              5                26
## 1860            Manhattan     Shared room              1                31
## 1861            Manhattan Entire home/apt              1                15
## 1862            Manhattan Entire home/apt              3               106
## 1863             Brooklyn Entire home/apt              2                37
## 1864             Brooklyn     Shared room              2               155
## 1865            Manhattan Entire home/apt              2                12
## 1866            Manhattan    Private room              4                 8
## 1867             Brooklyn Entire home/apt              5                 3
## 1868            Manhattan    Private room              2                45
## 1869            Manhattan    Private room              5                 8
## 1870            Manhattan    Private room             15                25
## 1871            Manhattan    Private room              1               100
## 1872            Manhattan Entire home/apt              1                64
## 1873             Brooklyn    Private room              1                 8
## 1874            Manhattan Entire home/apt              7                33
## 1875             Brooklyn    Private room              2                11
## 1876            Manhattan    Private room              1                 4
## 1877             Brooklyn Entire home/apt              3                31
## 1878            Manhattan Entire home/apt              2                82
## 1879                Bronx    Private room              2               291
## 1880             Brooklyn Entire home/apt              2                22
## 1881            Manhattan    Private room              1                58
## 1882            Manhattan Entire home/apt              2                71
## 1883             Brooklyn Entire home/apt             29                86
## 1884             Brooklyn Entire home/apt              1               315
## 1885            Manhattan    Private room              2                 3
## 1886            Manhattan    Private room              4                77
## 1887             Brooklyn    Private room              5                43
## 1888            Manhattan    Private room              7                35
## 1889            Manhattan    Private room              3                68
## 1890             Brooklyn    Private room             31                10
## 1891             Brooklyn    Private room              3               132
## 1892             Brooklyn Entire home/apt             30                 1
## 1893             Brooklyn    Private room              3               116
## 1894             Brooklyn    Private room             10                 7
## 1895            Manhattan    Private room              2                 2
## 1896             Brooklyn Entire home/apt              4                 8
## 1897             Brooklyn Entire home/apt              4                 6
## 1898             Brooklyn Entire home/apt              2                20
## 1899             Brooklyn Entire home/apt              4               125
## 1900             Brooklyn    Private room              2                22
## 1901             Brooklyn Entire home/apt              3               154
## 1902             Brooklyn Entire home/apt              3                 7
## 1903            Manhattan Entire home/apt              3                71
## 1904            Manhattan Entire home/apt             30                 5
## 1905             Brooklyn    Private room              3               112
## 1906             Brooklyn Entire home/apt              3                36
## 1907             Brooklyn Entire home/apt              4                 4
## 1908            Manhattan Entire home/apt              2                21
## 1909             Brooklyn    Private room              1               109
## 1910             Brooklyn    Private room              2                37
## 1911             Brooklyn Entire home/apt              6                78
## 1912            Manhattan    Private room              3               213
## 1913             Brooklyn     Shared room              3                15
## 1914             Brooklyn    Private room              2               102
## 1915             Brooklyn Entire home/apt              3                93
## 1916            Manhattan Entire home/apt              4                28
## 1917               Queens    Private room              1               116
## 1918               Queens Entire home/apt              1               313
## 1919             Brooklyn Entire home/apt              3               156
## 1920             Brooklyn Entire home/apt              3               106
## 1921            Manhattan Entire home/apt              5                 1
## 1922             Brooklyn Entire home/apt              2                27
## 1923            Manhattan    Private room              2                53
## 1924             Brooklyn Entire home/apt              2                 8
## 1925             Brooklyn Entire home/apt              6                10
## 1926            Manhattan    Private room              1               594
## 1927            Manhattan Entire home/apt              3                 9
## 1928             Brooklyn Entire home/apt              2               163
## 1929            Manhattan Entire home/apt             30                15
## 1930            Manhattan Entire home/apt             25                49
## 1931             Brooklyn Entire home/apt              2               147
## 1932             Brooklyn    Private room              3                78
## 1933               Queens    Private room              1                71
## 1934            Manhattan Entire home/apt              5                86
## 1935            Manhattan Entire home/apt              3                90
## 1936               Queens Entire home/apt              3               104
## 1937             Brooklyn     Shared room              3                28
## 1938             Brooklyn Entire home/apt              4                 2
## 1939            Manhattan    Private room              1               597
## 1940            Manhattan    Private room              1               607
## 1941             Brooklyn Entire home/apt              4                37
## 1942             Brooklyn Entire home/apt              5               152
## 1943             Brooklyn    Private room              3                66
## 1944            Manhattan Entire home/apt              7                28
## 1945            Manhattan    Private room              2               233
## 1946             Brooklyn    Private room              2                30
## 1947            Manhattan Entire home/apt              3                 2
## 1948             Brooklyn Entire home/apt              3                26
## 1949            Manhattan    Private room              3                24
## 1950            Manhattan Entire home/apt              2               157
## 1951             Brooklyn    Private room              3                 4
## 1952             Brooklyn Entire home/apt              3               136
## 1953            Manhattan    Private room              3                 5
## 1954            Manhattan Entire home/apt              1                 3
## 1955            Manhattan Entire home/apt              3                48
## 1956             Brooklyn    Private room              1               103
## 1957             Brooklyn    Private room              7                73
## 1958             Brooklyn    Private room              2               163
## 1959            Manhattan    Private room              2               153
## 1960            Manhattan Entire home/apt              2               287
## 1961             Brooklyn Entire home/apt              6                 1
## 1962             Brooklyn Entire home/apt              7                28
## 1963            Manhattan    Private room              1               120
## 1964             Brooklyn Entire home/apt              3                68
## 1965             Brooklyn Entire home/apt              4                22
## 1966            Manhattan Entire home/apt             28                28
## 1967            Manhattan Entire home/apt              6                22
## 1968               Queens Entire home/apt              1                78
## 1969             Brooklyn    Private room              5                69
## 1970             Brooklyn     Shared room              5                91
## 1971            Manhattan Entire home/apt             29                12
## 1972            Manhattan Entire home/apt              3                25
## 1973            Manhattan Entire home/apt             30                 4
## 1974            Manhattan Entire home/apt              7                92
## 1975            Manhattan Entire home/apt              7                13
## 1976               Queens    Private room              1                30
## 1977             Brooklyn    Private room              2                38
## 1978               Queens    Private room              1                75
## 1979            Manhattan Entire home/apt              3                20
## 1980             Brooklyn    Private room              3                13
## 1981            Manhattan    Private room             30               116
## 1982             Brooklyn    Private room             20                35
## 1983             Brooklyn Entire home/apt             29                55
## 1984            Manhattan    Private room              2               100
## 1985            Manhattan    Private room             14                17
## 1986             Brooklyn Entire home/apt              2                20
## 1987             Brooklyn    Private room              1                94
## 1988            Manhattan Entire home/apt             30                81
## 1989             Brooklyn    Private room              1                32
## 1990             Brooklyn Entire home/apt              7                15
## 1991             Brooklyn    Private room              5                39
## 1992             Brooklyn Entire home/apt              2                42
## 1993            Manhattan Entire home/apt              3               209
## 1994             Brooklyn Entire home/apt              1                67
## 1995            Manhattan Entire home/apt              4                45
## 1996            Manhattan Entire home/apt              3                 1
## 1997             Brooklyn Entire home/apt              5               117
## 1998             Brooklyn Entire home/apt             14                14
## 1999            Manhattan    Private room              1               414
## 2000            Manhattan    Private room             20                11
## 2001             Brooklyn    Private room             40                16
## 2002             Brooklyn Entire home/apt             30                30
## 2003               Queens Entire home/apt              2                74
## 2004            Manhattan Entire home/apt              3                73
## 2005            Manhattan Entire home/apt              7                50
## 2006            Manhattan Entire home/apt              2                56
## 2007            Manhattan Entire home/apt              5                 7
## 2008             Brooklyn    Private room              7                13
## 2009             Brooklyn Entire home/apt              2               236
## 2010            Manhattan Entire home/apt              1               129
## 2011             Brooklyn    Private room              5               114
## 2012                Bronx Entire home/apt              3                67
## 2013             Brooklyn Entire home/apt              7                 5
## 2014            Manhattan Entire home/apt             59                51
## 2015             Brooklyn    Private room              6                15
## 2016            Manhattan Entire home/apt             10                10
## 2017             Brooklyn    Private room              1                21
## 2018             Brooklyn    Private room              2               324
## 2019             Brooklyn Entire home/apt             28                14
## 2020            Manhattan    Private room              3                51
## 2021             Brooklyn    Private room              2                35
## 2022             Brooklyn Entire home/apt              2                11
## 2023            Manhattan    Private room              2                53
## 2024            Manhattan Entire home/apt              3               159
## 2025             Brooklyn    Private room              2                 7
## 2026             Brooklyn Entire home/apt             30                48
## 2027               Queens Entire home/apt              3               158
## 2028            Manhattan Entire home/apt              4                65
## 2029             Brooklyn    Private room              1                18
## 2030            Manhattan    Private room              5               395
## 2031             Brooklyn Entire home/apt              1                11
## 2032             Brooklyn Entire home/apt              4                33
## 2033            Manhattan Entire home/apt             10                35
## 2034            Manhattan Entire home/apt              2                61
## 2035            Manhattan Entire home/apt              3                10
## 2036               Queens Entire home/apt              2               260
## 2037               Queens    Private room              2               183
## 2038            Manhattan Entire home/apt              2                54
## 2039            Manhattan Entire home/apt              3                37
## 2040            Manhattan Entire home/apt              4                 1
## 2041             Brooklyn Entire home/apt              9                 3
## 2042            Manhattan Entire home/apt             30               190
## 2043             Brooklyn Entire home/apt             30                25
## 2044            Manhattan Entire home/apt              3               281
## 2045               Queens    Private room              4                70
## 2046             Brooklyn Entire home/apt              5                12
## 2047               Queens Entire home/apt              3                96
## 2048             Brooklyn Entire home/apt              5                 6
## 2049            Manhattan Entire home/apt              5                25
## 2050            Manhattan    Private room              3                 3
## 2051            Manhattan    Private room              2                57
## 2052            Manhattan    Private room              3               182
## 2053            Manhattan Entire home/apt              3                17
## 2054             Brooklyn Entire home/apt            365                 1
## 2055            Manhattan Entire home/apt              3               185
## 2056            Manhattan Entire home/apt             30                 8
## 2057            Manhattan Entire home/apt             30                13
## 2058            Manhattan Entire home/apt             30                 4
## 2059            Manhattan Entire home/apt              3                28
## 2060             Brooklyn Entire home/apt              4                81
## 2061            Manhattan Entire home/apt             30                 1
## 2062            Manhattan Entire home/apt             11                14
## 2063            Manhattan    Private room              7                 1
## 2064             Brooklyn Entire home/apt              3               200
## 2065               Queens    Private room              4                19
## 2066            Manhattan Entire home/apt             20                33
## 2067            Manhattan Entire home/apt              1               447
## 2068            Manhattan Entire home/apt              7                 2
## 2069            Manhattan Entire home/apt              3               108
## 2070             Brooklyn Entire home/apt             28                 1
## 2071             Brooklyn    Private room              3                92
## 2072            Manhattan     Shared room              2               117
## 2073            Manhattan Entire home/apt              2                66
## 2074            Manhattan    Private room              7                70
## 2075             Brooklyn Entire home/apt              7                98
## 2076            Manhattan     Shared room              1                43
## 2077            Manhattan    Private room             10                45
## 2078             Brooklyn Entire home/apt              3                41
## 2079             Brooklyn Entire home/apt             15                10
## 2080               Queens Entire home/apt              1                58
## 2081             Brooklyn Entire home/apt              2                48
## 2082             Brooklyn Entire home/apt              7                 8
## 2083               Queens     Shared room              1               127
## 2084             Brooklyn Entire home/apt              7                10
## 2085             Brooklyn Entire home/apt              6                 5
## 2086             Brooklyn    Private room              5                 8
## 2087             Brooklyn Entire home/apt             30                71
## 2088             Brooklyn Entire home/apt              5                 7
## 2089             Brooklyn    Private room             28                 1
## 2090             Brooklyn Entire home/apt              3                10
## 2091             Brooklyn    Private room              3                10
## 2092            Manhattan    Private room              3                49
## 2093             Brooklyn    Private room              3               138
## 2094            Manhattan    Private room              3               163
## 2095            Manhattan Entire home/apt             45                20
## 2096               Queens    Private room              2               132
## 2097               Queens    Private room              7                12
## 2098            Manhattan Entire home/apt             60                11
## 2099             Brooklyn Entire home/apt              2                45
## 2100                Bronx    Private room              2                11
## 2101            Manhattan Entire home/apt              5                47
## 2102            Manhattan    Private room              5                66
## 2103            Manhattan    Private room              5                35
## 2104             Brooklyn Entire home/apt              5                12
## 2105             Brooklyn    Private room              2                65
## 2106             Brooklyn Entire home/apt              2                39
## 2107             Brooklyn    Private room              2                45
## 2108            Manhattan Entire home/apt              7                 5
## 2109             Brooklyn Entire home/apt              2                38
## 2110             Brooklyn Entire home/apt              2                17
## 2111               Queens    Private room              4                70
## 2112            Manhattan Entire home/apt              3               226
## 2113             Brooklyn    Private room              5                 8
## 2114             Brooklyn Entire home/apt              3               166
## 2115            Manhattan Entire home/apt            360                 1
## 2116            Manhattan Entire home/apt              1                25
## 2117             Brooklyn Entire home/apt             30                52
## 2118            Manhattan Entire home/apt              6               127
## 2119            Manhattan    Private room              2                18
## 2120             Brooklyn Entire home/apt              2               210
## 2121               Queens    Private room              1               281
## 2122            Manhattan Entire home/apt              5                70
## 2123            Manhattan Entire home/apt              4               128
## 2124             Brooklyn    Private room              3                58
## 2125             Brooklyn    Private room              3               179
## 2126             Brooklyn Entire home/apt              3               173
## 2127               Queens    Private room              1                16
## 2128             Brooklyn Entire home/apt             30                26
## 2129            Manhattan Entire home/apt             30                31
## 2130            Manhattan    Private room              2                27
## 2131            Manhattan Entire home/apt              3                 7
## 2132            Manhattan    Private room              3                 7
## 2133            Manhattan Entire home/apt              5                83
## 2134            Manhattan    Private room              1                46
## 2135             Brooklyn Entire home/apt              4               112
## 2136             Brooklyn    Private room              1               356
## 2137             Brooklyn Entire home/apt              1                55
## 2138            Manhattan Entire home/apt              2                68
## 2139             Brooklyn Entire home/apt              4                95
## 2140            Manhattan Entire home/apt              5                16
## 2141            Manhattan    Private room              7                44
## 2142            Manhattan Entire home/apt              1               116
## 2143             Brooklyn    Private room              1                 4
## 2144            Manhattan Entire home/apt             31               235
## 2145             Brooklyn    Private room              2                10
## 2146             Brooklyn    Private room              3                 2
## 2147            Manhattan    Private room              1               360
## 2148             Brooklyn    Private room              2                51
## 2149            Manhattan Entire home/apt              2               146
## 2150             Brooklyn Entire home/apt             30                16
## 2151            Manhattan    Private room              3                64
## 2152             Brooklyn Entire home/apt              2                 3
## 2153            Manhattan    Private room              3               145
## 2154            Manhattan    Private room              1               206
## 2155             Brooklyn Entire home/apt              2               279
## 2156             Brooklyn Entire home/apt             28                18
## 2157             Brooklyn Entire home/apt              3               162
## 2158            Manhattan    Private room              1               323
## 2159               Queens Entire home/apt              2                13
## 2160               Queens Entire home/apt             30                 9
## 2161            Manhattan Entire home/apt             30                23
## 2162            Manhattan Entire home/apt             30                17
## 2163               Queens    Private room              1               136
## 2164            Manhattan Entire home/apt              5                26
## 2165             Brooklyn Entire home/apt              2                70
## 2166            Manhattan    Private room              2               243
## 2167             Brooklyn Entire home/apt             14                 6
## 2168            Manhattan    Private room             10                36
## 2169             Brooklyn    Private room              1                14
## 2170             Brooklyn Entire home/apt              2                 2
## 2171            Manhattan Entire home/apt              5                44
## 2172            Manhattan    Private room              2               123
## 2173             Brooklyn    Private room              2               248
## 2174            Manhattan    Private room              7                26
## 2175             Brooklyn    Private room              1                49
## 2176            Manhattan    Private room              2               152
## 2177             Brooklyn Entire home/apt              7               195
## 2178            Manhattan Entire home/apt             30                23
## 2179             Brooklyn    Private room              4                54
## 2180            Manhattan    Private room              2               233
## 2181             Brooklyn Entire home/apt              2                19
## 2182             Brooklyn Entire home/apt              2               116
## 2183            Manhattan Entire home/apt              3                 3
## 2184             Brooklyn Entire home/apt             30                38
## 2185             Brooklyn Entire home/apt              4               227
## 2186             Brooklyn Entire home/apt              9                27
## 2187             Brooklyn Entire home/apt              1               349
## 2188            Manhattan Entire home/apt              1                67
## 2189             Brooklyn Entire home/apt              4                95
## 2190            Manhattan Entire home/apt              4                 5
## 2191            Manhattan Entire home/apt              4                23
## 2192            Manhattan Entire home/apt             30                36
## 2193               Queens    Private room              5                59
## 2194             Brooklyn Entire home/apt              4                72
## 2195             Brooklyn Entire home/apt              3                21
## 2196             Brooklyn    Private room              2                44
## 2197             Brooklyn Entire home/apt              6                32
## 2198             Brooklyn    Private room              2               132
## 2199            Manhattan Entire home/apt              4                37
## 2200            Manhattan    Private room              3                37
## 2201            Manhattan Entire home/apt              1                23
## 2202             Brooklyn Entire home/apt              2                21
## 2203             Brooklyn    Private room              2                55
## 2204               Queens    Private room              1                 6
## 2205             Brooklyn    Private room              2                 1
## 2206             Brooklyn Entire home/apt              3               218
## 2207             Brooklyn Entire home/apt              2                16
## 2208            Manhattan    Private room              3                29
## 2209             Brooklyn    Private room              2                36
## 2210             Brooklyn    Private room              5                73
## 2211             Brooklyn    Private room              1                65
## 2212            Manhattan    Private room              5                20
## 2213             Brooklyn Entire home/apt             14                 1
## 2214            Manhattan    Private room             28                16
## 2215            Manhattan    Private room              2               246
## 2216            Manhattan Entire home/apt              3               126
## 2217             Brooklyn Entire home/apt              3                13
## 2218             Brooklyn    Private room              5                 4
## 2219             Brooklyn Entire home/apt              5                 1
## 2220            Manhattan    Private room              3                61
## 2221            Manhattan    Private room              3                29
## 2222             Brooklyn Entire home/apt              2                 4
## 2223            Manhattan Entire home/apt              3                42
## 2224            Manhattan Entire home/apt              3                82
## 2225             Brooklyn Entire home/apt              3               308
## 2226             Brooklyn    Private room             14                79
## 2227             Brooklyn    Private room              1                66
## 2228            Manhattan Entire home/apt             14                19
## 2229             Brooklyn    Private room              2                 8
## 2230            Manhattan Entire home/apt             30                12
## 2231            Manhattan Entire home/apt              2                26
## 2232            Manhattan Entire home/apt              3                19
## 2233             Brooklyn Entire home/apt              1                 7
## 2234             Brooklyn Entire home/apt              5                34
## 2235            Manhattan    Private room              3                13
## 2236             Brooklyn Entire home/apt              3               173
## 2237             Brooklyn    Private room              1                 4
## 2238            Manhattan Entire home/apt              4                27
## 2239            Manhattan Entire home/apt             45                11
## 2240             Brooklyn    Private room              1                 9
## 2241             Brooklyn Entire home/apt              3                60
## 2242            Manhattan Entire home/apt              2                70
## 2243             Brooklyn Entire home/apt              1               221
## 2244             Brooklyn    Private room              5               179
## 2245            Manhattan Entire home/apt             30                 3
## 2246            Manhattan    Private room              2               292
## 2247            Manhattan    Private room              5                42
## 2248            Manhattan Entire home/apt             30                24
## 2249            Manhattan Entire home/apt              3                 9
## 2250               Queens Entire home/apt              7                 2
## 2251            Manhattan    Private room              1                 6
## 2252             Brooklyn    Private room              3               140
## 2253            Manhattan    Private room             14                46
## 2254            Manhattan Entire home/apt              1                54
## 2255             Brooklyn    Private room              1               127
## 2256             Brooklyn Entire home/apt              7                 1
## 2257            Manhattan Entire home/apt              1                96
## 2258            Manhattan Entire home/apt             30                 4
## 2259             Brooklyn Entire home/apt              1               284
## 2260            Manhattan    Private room              1                30
## 2261            Manhattan    Private room              3                 1
## 2262             Brooklyn Entire home/apt              2               126
## 2263             Brooklyn Entire home/apt              2               198
## 2264            Manhattan Entire home/apt              4                26
## 2265             Brooklyn    Private room              5                13
## 2266             Brooklyn    Private room             30                10
## 2267             Brooklyn Entire home/apt              2                51
## 2268            Manhattan    Private room             14                 4
## 2269            Manhattan    Private room             30                13
## 2270            Manhattan    Private room              1               273
## 2271               Queens    Private room              2                12
## 2272            Manhattan Entire home/apt              4                 3
## 2273             Brooklyn Entire home/apt             30                13
## 2274            Manhattan    Private room              2                56
## 2275             Brooklyn    Private room              7               116
## 2276             Brooklyn Entire home/apt              2                31
## 2277            Manhattan    Private room             15                 5
## 2278            Manhattan Entire home/apt              2               136
## 2279            Manhattan Entire home/apt              7                 6
## 2280             Brooklyn Entire home/apt              2                80
## 2281            Manhattan Entire home/apt              4                25
## 2282             Brooklyn    Private room              2                43
## 2283            Manhattan     Shared room              1                66
## 2284             Brooklyn Entire home/apt              1                93
## 2285            Manhattan Entire home/apt              6                19
## 2286            Manhattan    Private room             30                 2
## 2287            Manhattan    Private room              1                85
## 2288            Manhattan Entire home/apt              2                32
## 2289            Manhattan Entire home/apt             14                 8
## 2290            Manhattan    Private room              2               228
## 2291            Manhattan Entire home/apt              7                30
## 2292             Brooklyn Entire home/apt              4               125
## 2293            Manhattan Entire home/apt              2                 9
## 2294            Manhattan Entire home/apt              4                42
## 2295            Manhattan    Private room              3               118
## 2296             Brooklyn Entire home/apt              3                38
## 2297            Manhattan    Private room              1                38
## 2298               Queens    Private room              1               224
## 2299                Bronx    Private room              2                64
## 2300            Manhattan Entire home/apt             60                 7
## 2301            Manhattan Entire home/apt              2               124
## 2302               Queens Entire home/apt              7                11
## 2303             Brooklyn Entire home/apt              2                59
## 2304            Manhattan Entire home/apt              2               191
## 2305            Manhattan    Private room              1                 1
## 2306             Brooklyn Entire home/apt              3               155
## 2307             Brooklyn Entire home/apt              3               105
## 2308            Manhattan    Private room              1                33
## 2309             Brooklyn    Private room              3                11
## 2310             Brooklyn    Private room              8                 5
## 2311            Manhattan Entire home/apt              2                28
## 2312             Brooklyn Entire home/apt              2               213
## 2313            Manhattan    Private room              3                14
## 2314            Manhattan Entire home/apt             29                10
## 2315             Brooklyn Entire home/apt              3                68
## 2316               Queens    Private room              2               103
## 2317            Manhattan Entire home/apt              1                 7
## 2318            Manhattan    Private room              5                 4
## 2319            Manhattan Entire home/apt              8                 3
## 2320            Manhattan    Private room              4                77
## 2321            Manhattan    Private room              7                 2
## 2322               Queens Entire home/apt              1               109
## 2323             Brooklyn Entire home/apt              2                 1
## 2324             Brooklyn Entire home/apt              3               146
## 2325             Brooklyn    Private room              1               374
## 2326             Brooklyn Entire home/apt             45                45
## 2327               Queens Entire home/apt             30                33
## 2328            Manhattan Entire home/apt              7                 7
## 2329            Manhattan    Private room             30                 4
## 2330            Manhattan    Private room              1                17
## 2331               Queens Entire home/apt              2               172
## 2332            Manhattan Entire home/apt              1                21
## 2333             Brooklyn     Shared room              5               110
## 2334               Queens Entire home/apt              3                23
## 2335             Brooklyn Entire home/apt              7                 4
## 2336             Brooklyn    Private room              3                13
## 2337             Brooklyn Entire home/apt              4                27
## 2338             Brooklyn Entire home/apt              7                 6
## 2339             Brooklyn    Private room              5                 1
## 2340            Manhattan Entire home/apt              2                52
## 2341             Brooklyn Entire home/apt              3                56
## 2342            Manhattan Entire home/apt              1               190
## 2343            Manhattan    Private room             30                 3
## 2344             Brooklyn    Private room              3                13
## 2345             Brooklyn Entire home/apt              2                23
## 2346             Brooklyn    Private room              2                 8
## 2347             Brooklyn    Private room              3                12
## 2348            Manhattan Entire home/apt             30                 4
## 2349             Brooklyn    Private room              3                28
## 2350             Brooklyn    Private room              2                11
## 2351             Brooklyn Entire home/apt              1               153
## 2352             Brooklyn    Private room              6               148
## 2353             Brooklyn Entire home/apt              5                12
## 2354             Brooklyn Entire home/apt              3               130
## 2355             Brooklyn Entire home/apt              5                11
## 2356             Brooklyn    Private room              4                12
## 2357            Manhattan    Private room              5                66
## 2358            Manhattan    Private room              3               191
## 2359            Manhattan Entire home/apt              1                92
## 2360             Brooklyn Entire home/apt              7                42
## 2361            Manhattan Entire home/apt              3                66
## 2362            Manhattan Entire home/apt             14                 4
## 2363             Brooklyn Entire home/apt              2                24
## 2364            Manhattan    Private room              5               206
## 2365             Brooklyn    Private room              1                85
## 2366            Manhattan Entire home/apt              3               106
## 2367            Manhattan     Shared room              3                21
## 2368             Brooklyn Entire home/apt              3               153
## 2369            Manhattan    Private room              1                 4
## 2370             Brooklyn    Private room              1               119
## 2371             Brooklyn Entire home/apt              2               114
## 2372             Brooklyn    Private room             30                 1
## 2373               Queens Entire home/apt              2                 1
## 2374             Brooklyn    Private room              5                 6
## 2375             Brooklyn    Private room              1                 2
## 2376             Brooklyn    Private room              1               127
## 2377             Brooklyn    Private room              1                 3
## 2378             Brooklyn Entire home/apt              7                10
## 2379             Brooklyn Entire home/apt              1                 1
## 2380                Bronx    Private room              2               147
## 2381             Brooklyn Entire home/apt             50                 4
## 2382             Brooklyn Entire home/apt              1                77
## 2383            Manhattan    Private room              3                18
## 2384            Manhattan Entire home/apt              5                18
## 2385             Brooklyn    Private room              2                 9
## 2386             Brooklyn Entire home/apt              5                49
## 2387            Manhattan Entire home/apt              3                27
## 2388            Manhattan Entire home/apt              3                67
## 2389             Brooklyn Entire home/apt              2               114
## 2390             Brooklyn    Private room             30                 1
## 2391            Manhattan Entire home/apt              2                 2
## 2392            Manhattan Entire home/apt             12                16
## 2393             Brooklyn    Private room              1               142
## 2394            Manhattan Entire home/apt              6                45
## 2395            Manhattan    Private room              4               106
## 2396             Brooklyn Entire home/apt              4                 1
## 2397            Manhattan    Private room              5                90
## 2398             Brooklyn    Private room              2                 4
## 2399            Manhattan Entire home/apt              4                27
## 2400               Queens Entire home/apt              1               102
## 2401             Brooklyn    Private room              2                57
## 2402            Manhattan Entire home/apt              7                18
## 2403            Manhattan Entire home/apt             29                10
## 2404            Manhattan Entire home/apt             14                51
## 2405            Manhattan Entire home/apt              2                 1
## 2406            Manhattan    Private room              1                49
## 2407             Brooklyn Entire home/apt              4                68
## 2408             Brooklyn    Private room              2                 5
## 2409             Brooklyn Entire home/apt              3                 4
## 2410            Manhattan Entire home/apt             30                12
## 2411            Manhattan Entire home/apt              2                64
## 2412            Manhattan Entire home/apt              2                 2
## 2413            Manhattan    Private room              5                 5
## 2414            Manhattan    Private room              1                28
## 2415            Manhattan Entire home/apt              3               108
## 2416             Brooklyn    Private room             25                 4
## 2417             Brooklyn    Private room              3                73
## 2418             Brooklyn    Private room              1                 3
## 2419             Brooklyn    Private room              3               107
## 2420            Manhattan Entire home/apt             30                11
## 2421             Brooklyn Entire home/apt              1               173
## 2422             Brooklyn Entire home/apt              3                 6
## 2423             Brooklyn    Private room              1               117
## 2424             Brooklyn Entire home/apt              3                24
## 2425             Brooklyn    Private room              1               173
## 2426            Manhattan Entire home/apt              2                10
## 2427             Brooklyn Entire home/apt              4                 5
## 2428            Manhattan Entire home/apt              3                19
## 2429             Brooklyn     Shared room              5               120
## 2430               Queens Entire home/apt             70                44
## 2431               Queens    Private room              2                61
## 2432            Manhattan    Private room              1                 6
## 2433            Manhattan    Private room              1                 5
## 2434             Brooklyn Entire home/apt              3                 2
## 2435             Brooklyn Entire home/apt              3                14
## 2436            Manhattan Entire home/apt              2                26
## 2437             Brooklyn    Private room              3                72
## 2438             Brooklyn    Private room              3                24
## 2439               Queens Entire home/apt              3                 2
## 2440             Brooklyn Entire home/apt              3                13
## 2441            Manhattan    Private room              1                86
## 2442             Brooklyn    Private room              1               115
## 2443             Brooklyn Entire home/apt             25                11
## 2444             Brooklyn Entire home/apt              7                41
## 2445            Manhattan Entire home/apt              6                 3
## 2446             Brooklyn Entire home/apt              3                38
## 2447               Queens    Private room              1                 5
## 2448            Manhattan Entire home/apt              4                 5
## 2449             Brooklyn Entire home/apt              7                 4
## 2450            Manhattan Entire home/apt              3               155
## 2451             Brooklyn Entire home/apt              7                 3
## 2452             Brooklyn    Private room              1                75
## 2453            Manhattan Entire home/apt             39                25
## 2454            Manhattan Entire home/apt            120                34
## 2455            Manhattan Entire home/apt              3                35
## 2456             Brooklyn    Private room              2                 6
## 2457            Manhattan Entire home/apt             30                 2
## 2458            Manhattan Entire home/apt              7                11
## 2459             Brooklyn Entire home/apt              2                24
## 2460            Manhattan    Private room              1                86
## 2461             Brooklyn    Private room              7                14
## 2462             Brooklyn Entire home/apt              3                52
## 2463             Brooklyn    Private room              2                14
## 2464            Manhattan Entire home/apt              3               123
## 2465             Brooklyn    Private room              2                11
## 2466             Brooklyn Entire home/apt              3               230
## 2467            Manhattan Entire home/apt              3               141
## 2468             Brooklyn    Private room              2                 8
## 2469            Manhattan    Private room              2               146
## 2470            Manhattan    Private room              2                20
## 2471             Brooklyn    Private room              3                 2
## 2472             Brooklyn Entire home/apt              3               144
## 2473             Brooklyn Entire home/apt             30                 1
## 2474               Queens Entire home/apt              2                30
## 2475            Manhattan Entire home/apt              2                 7
## 2476            Manhattan Entire home/apt              5                11
## 2477             Brooklyn Entire home/apt             15                 2
## 2478             Brooklyn Entire home/apt              3               162
## 2479             Brooklyn    Private room              1               123
## 2480            Manhattan    Private room              1               141
## 2481            Manhattan Entire home/apt              1                78
## 2482             Brooklyn    Private room              1                96
## 2483             Brooklyn Entire home/apt             30                58
## 2484            Manhattan    Private room              1                 2
## 2485             Brooklyn    Private room             28                91
## 2486             Brooklyn Entire home/apt              2                24
## 2487            Manhattan    Private room              1                16
## 2488             Brooklyn Entire home/apt             10                 6
## 2489             Brooklyn Entire home/apt              7               140
## 2490            Manhattan Entire home/apt              4                95
## 2491            Manhattan    Private room             30                 5
## 2492            Manhattan Entire home/apt              1                 2
## 2493             Brooklyn    Private room              1               245
## 2494            Manhattan Entire home/apt              3                 5
## 2495             Brooklyn    Private room              5                39
## 2496            Manhattan    Private room              3                90
## 2497            Manhattan Entire home/apt            120                 3
## 2498            Manhattan Entire home/apt              4                28
## 2499             Brooklyn    Private room              7                 2
## 2500            Manhattan    Private room              2                77
## 2501            Manhattan    Private room              1                77
## 2502             Brooklyn Entire home/apt              1                 2
## 2503            Manhattan    Private room              3               231
## 2504             Brooklyn Entire home/apt             30                 7
## 2505             Brooklyn    Private room              2                98
## 2506            Manhattan    Private room              4                14
## 2507             Brooklyn Entire home/apt              5                25
## 2508             Brooklyn Entire home/apt              1               226
## 2509             Brooklyn Entire home/apt             30                 6
## 2510             Brooklyn Entire home/apt             28                33
## 2511             Brooklyn Entire home/apt              3                82
## 2512            Manhattan Entire home/apt              3                53
## 2513            Manhattan Entire home/apt             24                10
## 2514             Brooklyn    Private room              4                 7
## 2515             Brooklyn    Private room              3                54
## 2516            Manhattan Entire home/apt              1               320
## 2517               Queens Entire home/apt             30                 2
## 2518             Brooklyn Entire home/apt              3                23
## 2519             Brooklyn Entire home/apt              2               220
## 2520             Brooklyn    Private room              5                31
## 2521            Manhattan    Private room              5                 3
## 2522            Manhattan Entire home/apt              4                68
## 2523             Brooklyn    Private room              2                33
## 2524             Brooklyn    Private room              2                44
## 2525             Brooklyn    Private room              2               189
## 2526             Brooklyn    Private room              3                20
## 2527             Brooklyn Entire home/apt              2                11
## 2528            Manhattan Entire home/apt              5                11
## 2529            Manhattan Entire home/apt              7                64
## 2530            Manhattan Entire home/apt              1                76
## 2531            Manhattan Entire home/apt              2               140
## 2532             Brooklyn    Private room             30                25
## 2533            Manhattan Entire home/apt              6                 1
## 2534               Queens Entire home/apt              1                 4
## 2535            Manhattan    Private room              3                 5
## 2536             Brooklyn    Private room             30                21
## 2537             Brooklyn Entire home/apt             30                18
## 2538             Brooklyn    Private room              7                41
## 2539            Manhattan    Private room             14               172
## 2540             Brooklyn    Private room              5                13
## 2541               Queens Entire home/apt             20                75
## 2542             Brooklyn Entire home/apt              6                 1
## 2543             Brooklyn     Shared room              2                 5
## 2544             Brooklyn Entire home/apt              3                62
## 2545            Manhattan    Private room              3                 7
## 2546             Brooklyn Entire home/apt              3               199
## 2547            Manhattan    Private room              1               123
## 2548            Manhattan    Private room              2                 7
## 2549             Brooklyn Entire home/apt              5                 3
## 2550             Brooklyn Entire home/apt              2                34
## 2551            Manhattan Entire home/apt             30                23
## 2552            Manhattan Entire home/apt              1                 4
## 2553            Manhattan Entire home/apt              3               220
## 2554            Manhattan    Private room              7                40
## 2555             Brooklyn Entire home/apt              3               208
## 2556            Manhattan Entire home/apt              3               232
## 2557             Brooklyn Entire home/apt              2                16
## 2558            Manhattan    Private room              1               196
## 2559             Brooklyn Entire home/apt             30                 4
## 2560             Brooklyn    Private room              2                64
## 2561            Manhattan Entire home/apt             10                 2
## 2562            Manhattan Entire home/apt              2               149
## 2563            Manhattan Entire home/apt              1                 2
## 2564             Brooklyn Entire home/apt              2                 1
## 2565             Brooklyn Entire home/apt             30                49
## 2566             Brooklyn Entire home/apt              4                21
## 2567            Manhattan Entire home/apt              2                 1
## 2568            Manhattan Entire home/apt              2                13
## 2569            Manhattan Entire home/apt             32               132
## 2570             Brooklyn Entire home/apt              2                67
## 2571               Queens    Private room              4                76
## 2572             Brooklyn Entire home/apt             30                 6
## 2573            Manhattan    Private room              1               167
## 2574             Brooklyn    Private room              4                34
## 2575             Brooklyn    Private room              3                11
## 2576             Brooklyn    Private room              2                90
## 2577            Manhattan Entire home/apt              2                23
## 2578            Manhattan Entire home/apt              1               152
## 2579               Queens    Private room              1               190
## 2580               Queens    Private room              1                19
## 2581            Manhattan    Private room              2                33
## 2582             Brooklyn Entire home/apt              2                 1
## 2583             Brooklyn Entire home/apt              3               227
## 2584             Brooklyn Entire home/apt              2                80
## 2585            Manhattan    Private room              2               125
## 2586             Brooklyn Entire home/apt              3                10
## 2587            Manhattan Entire home/apt              5                 3
## 2588            Manhattan Entire home/apt             30                18
## 2589             Brooklyn Entire home/apt              4                26
## 2590               Queens    Private room              1                26
## 2591               Queens    Private room              1                14
## 2592            Manhattan     Shared room              2                62
## 2593               Queens    Private room              1                32
## 2594             Brooklyn    Private room              3                23
## 2595            Manhattan    Private room             12                11
## 2596            Manhattan Entire home/apt              3               201
## 2597               Queens    Private room              5                 8
## 2598             Brooklyn    Private room              3                95
## 2599               Queens Entire home/apt              2                13
## 2600            Manhattan Entire home/apt             15                 6
## 2601            Manhattan Entire home/apt              2                26
## 2602             Brooklyn Entire home/apt             12                11
## 2603            Manhattan Entire home/apt            120                38
## 2604            Manhattan    Private room              1                90
## 2605            Manhattan Entire home/apt            115                45
## 2606             Brooklyn    Private room              3               130
## 2607             Brooklyn    Private room              3               147
## 2608            Manhattan    Private room              1                 1
## 2609             Brooklyn Entire home/apt              2                78
## 2610             Brooklyn Entire home/apt              3                17
## 2611            Manhattan    Private room              2                15
## 2612            Manhattan Entire home/apt              5                 9
## 2613             Brooklyn Entire home/apt             30                 9
## 2614             Brooklyn Entire home/apt              4                18
## 2615            Manhattan Entire home/apt              3                 1
## 2616                Bronx    Private room             21                19
## 2617             Brooklyn Entire home/apt              3                17
## 2618            Manhattan    Private room              3                51
## 2619             Brooklyn    Private room              1               162
## 2620             Brooklyn Entire home/apt              2               195
## 2621             Brooklyn Entire home/apt              1                87
## 2622            Manhattan Entire home/apt              2               271
## 2623            Manhattan Entire home/apt              4                 7
## 2624             Brooklyn    Private room              2                 4
## 2625             Brooklyn    Private room              7                58
## 2626            Manhattan Entire home/apt              4                60
## 2627            Manhattan Entire home/apt              2               114
## 2628             Brooklyn    Private room              2                31
## 2629             Brooklyn    Private room              5                84
## 2630             Brooklyn    Private room              5                21
## 2631            Manhattan Entire home/apt              1               200
## 2632             Brooklyn Entire home/apt              7                19
## 2633             Brooklyn Entire home/apt              4                12
## 2634             Brooklyn Entire home/apt              3                38
## 2635             Brooklyn Entire home/apt              5                 3
## 2636            Manhattan Entire home/apt              2                17
## 2637             Brooklyn Entire home/apt              4                10
## 2638             Brooklyn Entire home/apt              6                10
## 2639             Brooklyn    Private room              3                52
## 2640             Brooklyn    Private room              3                 1
## 2641             Brooklyn Entire home/apt              3               134
## 2642             Brooklyn    Private room              3                46
## 2643             Brooklyn    Private room              3                 2
## 2644             Brooklyn    Private room              2                 2
## 2645            Manhattan Entire home/apt              5                50
## 2646             Brooklyn Entire home/apt             30                 7
## 2647             Brooklyn Entire home/apt              3                86
## 2648               Queens Entire home/apt              4                 3
## 2649            Manhattan Entire home/apt              7                14
## 2650             Brooklyn Entire home/apt              2               121
## 2651            Manhattan     Shared room              1               136
## 2652            Manhattan Entire home/apt              2                68
## 2653             Brooklyn Entire home/apt             30                13
## 2654            Manhattan Entire home/apt              1                 2
## 2655            Manhattan Entire home/apt              7                76
## 2656             Brooklyn Entire home/apt              7                22
## 2657             Brooklyn Entire home/apt              3                66
## 2658             Brooklyn    Private room              1                73
## 2659            Manhattan    Private room             28                23
## 2660             Brooklyn    Private room              2                11
## 2661             Brooklyn    Private room              1               126
## 2662             Brooklyn Entire home/apt              2               229
## 2663               Queens Entire home/apt              2                 2
## 2664               Queens    Private room              1               116
## 2665            Manhattan Entire home/apt             31               177
## 2666            Manhattan Entire home/apt              3               105
## 2667               Queens Entire home/apt              3               184
## 2668            Manhattan Entire home/apt              2                31
## 2669             Brooklyn Entire home/apt              2                36
## 2670            Manhattan Entire home/apt              5                 9
## 2671            Manhattan Entire home/apt             30                27
## 2672             Brooklyn Entire home/apt              1               124
## 2673            Manhattan    Private room              4               131
## 2674             Brooklyn Entire home/apt             30                50
## 2675            Manhattan Entire home/apt              4                17
## 2676             Brooklyn Entire home/apt              2                95
## 2677            Manhattan Entire home/apt              2                29
## 2678               Queens    Private room              2                25
## 2679            Manhattan    Private room              1               212
## 2680            Manhattan Entire home/apt              1                15
## 2681             Brooklyn    Private room              2                12
## 2682            Manhattan    Private room              2                30
## 2683             Brooklyn    Private room             30                 5
## 2684               Queens    Private room              1               165
## 2685               Queens Entire home/apt              2               260
## 2686            Manhattan Entire home/apt              7                 2
## 2687             Brooklyn Entire home/apt              3                 9
## 2688            Manhattan Entire home/apt              4                 9
## 2689            Manhattan    Private room              2                59
## 2690             Brooklyn    Private room              4                38
## 2691               Queens    Private room             20                33
## 2692               Queens    Private room             28                14
## 2693             Brooklyn    Private room              2                68
## 2694            Manhattan Entire home/apt              1               123
## 2695            Manhattan Entire home/apt              5                31
## 2696             Brooklyn Entire home/apt              1                 1
## 2697            Manhattan    Private room              7                19
## 2698             Brooklyn Entire home/apt              2               198
## 2699            Manhattan Entire home/apt              7                19
## 2700            Manhattan Entire home/apt              7                27
## 2701               Queens    Private room              4                68
## 2702        Staten Island Entire home/apt             30                 1
## 2703            Manhattan    Private room              2                48
## 2704            Manhattan Entire home/apt              5               116
## 2705            Manhattan Entire home/apt              5                10
## 2706               Queens    Private room              1                 8
## 2707            Manhattan Entire home/apt              2               285
## 2708             Brooklyn    Private room              3               142
## 2709            Manhattan Entire home/apt             30                 3
## 2710             Brooklyn Entire home/apt            120                12
## 2711             Brooklyn    Private room              7                61
## 2712            Manhattan Entire home/apt              2                55
## 2713             Brooklyn Entire home/apt             30                 8
## 2714            Manhattan Entire home/apt              2                44
## 2715             Brooklyn Entire home/apt              4                41
## 2716               Queens    Private room              3                12
## 2717             Brooklyn Entire home/apt              7                26
## 2718            Manhattan     Shared room              3                38
## 2719             Brooklyn Entire home/apt              1                48
## 2720            Manhattan    Private room              5               152
## 2721             Brooklyn Entire home/apt              3                 1
## 2722             Brooklyn    Private room              1                 4
## 2723            Manhattan    Private room              3                 1
## 2724             Brooklyn    Private room              4               142
## 2725             Brooklyn Entire home/apt              3               158
## 2726            Manhattan    Private room              5               112
## 2727            Manhattan    Private room              2               141
## 2728            Manhattan Entire home/apt              3                19
## 2729             Brooklyn Entire home/apt              2                 1
## 2730            Manhattan    Private room              1                73
## 2731             Brooklyn Entire home/apt              4                72
## 2732            Manhattan Entire home/apt              4                13
## 2733            Manhattan Entire home/apt              7                40
## 2734            Manhattan Entire home/apt              6                36
## 2735             Brooklyn Entire home/apt              1                 5
## 2736             Brooklyn Entire home/apt              3                94
## 2737             Brooklyn Entire home/apt              2               127
## 2738             Brooklyn Entire home/apt              2                45
## 2739             Brooklyn Entire home/apt              3               220
## 2740            Manhattan    Private room              2               121
## 2741             Brooklyn Entire home/apt              3               185
## 2742             Brooklyn Entire home/apt              3               229
## 2743            Manhattan Entire home/apt              6                29
## 2744             Brooklyn Entire home/apt             20                 1
## 2745            Manhattan Entire home/apt              2                21
## 2746             Brooklyn    Private room              5                 1
## 2747               Queens Entire home/apt              9                11
## 2748             Brooklyn    Private room              6                41
## 2749             Brooklyn Entire home/apt              3               173
## 2750            Manhattan Entire home/apt              3                20
## 2751             Brooklyn    Private room              3                 1
## 2752             Brooklyn     Shared room              1                34
## 2753            Manhattan Entire home/apt             30                12
## 2754             Brooklyn Entire home/apt              2               147
## 2755            Manhattan Entire home/apt             30                 7
## 2756             Brooklyn Entire home/apt              1                59
## 2757             Brooklyn Entire home/apt             30                 9
## 2758            Manhattan    Private room              1               203
## 2759            Manhattan Entire home/apt              3                25
## 2760             Brooklyn Entire home/apt              2               189
## 2761            Manhattan Entire home/apt              5                52
## 2762             Brooklyn Entire home/apt             59                48
## 2763            Manhattan Entire home/apt              2                 6
## 2764            Manhattan    Private room              4                12
## 2765            Manhattan Entire home/apt             29                 3
## 2766        Staten Island Entire home/apt              3                19
## 2767             Brooklyn Entire home/apt              2               201
## 2768            Manhattan Entire home/apt              6                79
## 2769            Manhattan Entire home/apt             30                24
## 2770            Manhattan Entire home/apt              5                 5
## 2771            Manhattan Entire home/apt             30                18
## 2772            Manhattan Entire home/apt             30                17
## 2773            Manhattan Entire home/apt             30                14
## 2774             Brooklyn    Private room              1                23
## 2775             Brooklyn    Private room             31                28
## 2776             Brooklyn Entire home/apt              2                14
## 2777            Manhattan    Private room              3               139
## 2778               Queens    Private room              1               274
## 2779             Brooklyn Entire home/apt             31                14
## 2780               Queens    Private room              2               201
## 2781               Queens    Private room              7                34
## 2782             Brooklyn    Private room              1                40
## 2783            Manhattan Entire home/apt             30               128
## 2784             Brooklyn    Private room              3                 2
## 2785               Queens Entire home/apt              4                24
## 2786            Manhattan Entire home/apt             31                 6
## 2787             Brooklyn    Private room              3                52
## 2788                Bronx    Private room              1                19
## 2789             Brooklyn    Private room              3                48
## 2790             Brooklyn    Private room              2                13
## 2791            Manhattan    Private room              2                64
## 2792            Manhattan    Private room              1                37
## 2793             Brooklyn    Private room              3               146
## 2794             Brooklyn    Private room              2               144
## 2795             Brooklyn    Private room              3                34
## 2796            Manhattan    Private room              3               101
## 2797            Manhattan Entire home/apt              7                11
## 2798             Brooklyn Entire home/apt              3                59
## 2799            Manhattan    Private room              2               244
## 2800               Queens    Private room             30                 7
## 2801             Brooklyn Entire home/apt              3                11
## 2802             Brooklyn    Private room              2               108
## 2803             Brooklyn Entire home/apt             15                53
## 2804            Manhattan Entire home/apt              4               182
## 2805            Manhattan    Private room              3               164
## 2806            Manhattan    Private room              2                 4
## 2807             Brooklyn    Private room              5                 7
## 2808             Brooklyn    Private room              1                69
## 2809            Manhattan    Private room              2                28
## 2810             Brooklyn    Private room              4                 2
## 2811             Brooklyn    Private room              1               214
## 2812             Brooklyn Entire home/apt              3                23
## 2813            Manhattan    Private room              1               274
## 2814            Manhattan Entire home/apt              5                31
## 2815            Manhattan Entire home/apt              3                65
## 2816             Brooklyn Entire home/apt              2                23
## 2817            Manhattan Entire home/apt              3                 6
## 2818             Brooklyn Entire home/apt              7                18
## 2819            Manhattan    Private room              4                11
## 2820            Manhattan    Private room              1               135
## 2821             Brooklyn Entire home/apt              7                 7
## 2822             Brooklyn    Private room              1                60
## 2823             Brooklyn    Private room              1                38
## 2824             Brooklyn Entire home/apt              2                19
## 2825             Brooklyn    Private room              3               200
## 2826            Manhattan    Private room             14                30
## 2827            Manhattan    Private room              2                27
## 2828             Brooklyn Entire home/apt              2                92
## 2829            Manhattan Entire home/apt              5                79
## 2830            Manhattan    Private room              1                20
## 2831             Brooklyn Entire home/apt              2                25
## 2832             Brooklyn    Private room              1               340
## 2833               Queens    Private room              3               231
## 2834             Brooklyn Entire home/apt             30               183
## 2835               Queens    Private room             20                52
## 2836             Brooklyn Entire home/apt              2               210
## 2837             Brooklyn Entire home/apt             30                 2
## 2838            Manhattan Entire home/apt              3                18
## 2839                Bronx    Private room              3                53
## 2840            Manhattan Entire home/apt              2                65
## 2841            Manhattan Entire home/apt             80                20
## 2842               Queens Entire home/apt              2                40
## 2843            Manhattan Entire home/apt              5                14
## 2844            Manhattan Entire home/apt              2               119
## 2845               Queens    Private room              3                 4
## 2846             Brooklyn Entire home/apt              3               144
## 2847             Brooklyn    Private room              1               221
## 2848            Manhattan Entire home/apt              3                 3
## 2849            Manhattan Entire home/apt              2                26
## 2850             Brooklyn Entire home/apt             30                 6
## 2851            Manhattan Entire home/apt              5                13
## 2852            Manhattan Entire home/apt              3               111
## 2853            Manhattan    Private room              2               235
## 2854                Bronx    Private room              2                11
## 2855            Manhattan Entire home/apt              1                29
## 2856            Manhattan    Private room              2                17
## 2857             Brooklyn Entire home/apt              3                78
## 2858             Brooklyn Entire home/apt              3               115
## 2859            Manhattan Entire home/apt              7                19
## 2860            Manhattan Entire home/apt              2               144
## 2861            Manhattan    Private room              1                41
## 2862            Manhattan Entire home/apt              4                10
## 2863             Brooklyn Entire home/apt              1                 9
## 2864             Brooklyn    Private room              3               112
## 2865             Brooklyn Entire home/apt              4               123
## 2866            Manhattan Entire home/apt              4               127
## 2867            Manhattan    Private room              3                 6
## 2868             Brooklyn    Private room              2                 3
## 2869               Queens    Private room              2               107
## 2870               Queens Entire home/apt              1                41
## 2871            Manhattan    Private room              1                43
## 2872            Manhattan    Private room              5                62
## 2873            Manhattan Entire home/apt              1               233
## 2874               Queens    Private room              2               386
## 2875            Manhattan Entire home/apt             60                74
## 2876            Manhattan Entire home/apt              5               108
## 2877            Manhattan     Shared room              1               205
## 2878               Queens     Shared room              5                63
## 2879             Brooklyn Entire home/apt              7                39
## 2880            Manhattan    Private room              2                37
## 2881            Manhattan Entire home/apt              3                 1
## 2882             Brooklyn    Private room              3                19
## 2883            Manhattan Entire home/apt              3                50
## 2884             Brooklyn    Private room             10                20
## 2885             Brooklyn Entire home/apt              2                85
## 2886             Brooklyn    Private room              1               142
## 2887            Manhattan Entire home/apt              4                22
## 2888             Brooklyn Entire home/apt              2                 6
## 2889            Manhattan    Private room              3               210
## 2890             Brooklyn    Private room              5                79
## 2891            Manhattan Entire home/apt              3                10
## 2892            Manhattan Entire home/apt              2                 2
## 2893            Manhattan    Private room              1                57
## 2894            Manhattan Entire home/apt              3               258
## 2895            Manhattan Entire home/apt              5                 4
## 2896             Brooklyn    Private room              1                10
## 2897             Brooklyn Entire home/apt              2                11
## 2898             Brooklyn Entire home/apt              3               143
## 2899            Manhattan Entire home/apt              1                26
## 2900                Bronx    Private room              2                32
## 2901             Brooklyn    Private room              2                14
## 2902             Brooklyn Entire home/apt              2                15
## 2903               Queens Entire home/apt              1                92
## 2904             Brooklyn Entire home/apt              2                14
## 2905            Manhattan Entire home/apt              6                40
## 2906            Manhattan    Private room              2                12
## 2907             Brooklyn    Private room              1                71
## 2908             Brooklyn Entire home/apt              5                16
## 2909             Brooklyn Entire home/apt              4               134
## 2910             Brooklyn Entire home/apt              3                 2
## 2911             Brooklyn Entire home/apt              3               190
## 2912            Manhattan Entire home/apt             10                 4
## 2913             Brooklyn    Private room              1                19
## 2914             Brooklyn    Private room              7                30
## 2915            Manhattan    Private room              3                22
## 2916            Manhattan    Private room             30                83
## 2917            Manhattan    Private room              1                 1
## 2918             Brooklyn Entire home/apt              2                 2
## 2919            Manhattan    Private room              1                93
## 2920            Manhattan Entire home/apt              2                25
## 2921             Brooklyn Entire home/apt              2               240
## 2922            Manhattan Entire home/apt              1                80
## 2923               Queens    Private room              5                80
## 2924             Brooklyn    Private room              1               336
## 2925             Brooklyn Entire home/apt              2                10
## 2926            Manhattan Entire home/apt             30                93
## 2927             Brooklyn    Private room              5                54
## 2928             Brooklyn Entire home/apt              3               164
## 2929             Brooklyn    Private room              3                35
## 2930            Manhattan Entire home/apt              2                 8
## 2931            Manhattan Entire home/apt              7                 3
## 2932            Manhattan Entire home/apt              1                53
## 2933            Manhattan Entire home/apt             30               104
## 2934             Brooklyn    Private room              1                36
## 2935            Manhattan    Private room              7                 9
## 2936             Brooklyn    Private room              3                 3
## 2937            Manhattan Entire home/apt              2                40
## 2938             Brooklyn Entire home/apt              3                61
## 2939            Manhattan Entire home/apt              2                53
## 2940             Brooklyn    Private room              3                 7
## 2941            Manhattan Entire home/apt              4                35
## 2942             Brooklyn    Private room              3                85
## 2943            Manhattan Entire home/apt            110                13
## 2944             Brooklyn Entire home/apt              5                14
## 2945            Manhattan Entire home/apt              5                27
## 2946            Manhattan    Private room              3                12
## 2947            Manhattan    Private room              5                51
## 2948             Brooklyn Entire home/apt              1               319
## 2949             Brooklyn Entire home/apt              7               122
## 2950            Manhattan Entire home/apt              3                21
## 2951            Manhattan Entire home/apt              4               130
## 2952             Brooklyn    Private room             90                47
## 2953            Manhattan    Private room              1                 1
## 2954             Brooklyn Entire home/apt              2                 8
## 2955             Brooklyn    Private room              2                23
## 2956            Manhattan Entire home/apt              2                29
## 2957             Brooklyn    Private room              2               166
## 2958            Manhattan Entire home/apt              5                 9
## 2959            Manhattan Entire home/apt              3                60
## 2960             Brooklyn Entire home/apt              2                29
## 2961             Brooklyn Entire home/apt              7               108
## 2962            Manhattan Entire home/apt              5                 4
## 2963             Brooklyn Entire home/apt              3               181
## 2964             Brooklyn Entire home/apt              3               134
## 2965            Manhattan Entire home/apt              5                29
## 2966            Manhattan    Private room              3                97
## 2967            Manhattan    Private room              1                61
## 2968            Manhattan Entire home/apt              3                10
## 2969            Manhattan Entire home/apt              5                 6
## 2970            Manhattan Entire home/apt              4                43
## 2971            Manhattan    Private room              3                79
## 2972            Manhattan Entire home/apt              4                38
## 2973             Brooklyn Entire home/apt              1                93
## 2974            Manhattan Entire home/apt              5                42
## 2975            Manhattan Entire home/apt              3                46
## 2976             Brooklyn    Private room              1               220
## 2977            Manhattan Entire home/apt              2                 2
## 2978            Manhattan Entire home/apt              2                19
## 2979            Manhattan Entire home/apt              2                 7
## 2980             Brooklyn Entire home/apt              3                14
## 2981             Brooklyn Entire home/apt              7                 8
## 2982               Queens    Private room              2                97
## 2983            Manhattan    Private room              6                 4
## 2984            Manhattan Entire home/apt              2                 6
## 2985             Brooklyn Entire home/apt             20                46
## 2986            Manhattan Entire home/apt              2               240
## 2987            Manhattan    Private room              3               134
## 2988            Manhattan Entire home/apt              4                31
## 2989            Manhattan Entire home/apt              5               143
## 2990             Brooklyn Entire home/apt             30                 5
## 2991             Brooklyn    Private room              3                92
## 2992             Brooklyn Entire home/apt              3               207
## 2993            Manhattan Entire home/apt              3                 1
## 2994             Brooklyn Entire home/apt              2               111
## 2995            Manhattan    Private room              2               128
## 2996             Brooklyn    Private room              5                72
## 2997             Brooklyn    Private room              1                38
## 2998            Manhattan    Private room              4               108
## 2999             Brooklyn    Private room              5                85
## 3000            Manhattan Entire home/apt              3               158
## 3001             Brooklyn    Private room              1               236
## 3002             Brooklyn Entire home/apt              2                20
## 3003            Manhattan Entire home/apt              3                35
## 3004             Brooklyn Entire home/apt              4                10
## 3005             Brooklyn    Private room              2                 6
## 3006             Brooklyn Entire home/apt              5                44
## 3007            Manhattan    Private room              2               143
## 3008             Brooklyn Entire home/apt              4                19
## 3009            Manhattan Entire home/apt              2               249
## 3010             Brooklyn Entire home/apt              5                 2
## 3011             Brooklyn Entire home/apt             30                 7
## 3012            Manhattan Entire home/apt              5                33
## 3013             Brooklyn Entire home/apt              3               266
## 3014             Brooklyn    Private room              1               238
## 3015             Brooklyn    Private room              3                30
## 3016            Manhattan Entire home/apt              4                26
## 3017             Brooklyn Entire home/apt              4                26
## 3018               Queens    Private room              5                70
## 3019            Manhattan    Private room              1               202
## 3020             Brooklyn    Private room              6                 1
## 3021             Brooklyn Entire home/apt              1                15
## 3022            Manhattan Entire home/apt              4                 8
## 3023             Brooklyn    Private room              1               227
## 3024            Manhattan    Private room              1                 2
## 3025             Brooklyn    Private room              5                17
## 3026            Manhattan    Private room              3                 1
## 3027            Manhattan Entire home/apt              1                 7
## 3028             Brooklyn Entire home/apt             30                14
## 3029             Brooklyn    Private room             29                12
## 3030            Manhattan Entire home/apt             30                 2
## 3031             Brooklyn Entire home/apt              7                 2
## 3032             Brooklyn Entire home/apt              1                 2
## 3033             Brooklyn    Private room             30                 7
## 3034            Manhattan Entire home/apt              2               322
## 3035            Manhattan    Private room              4                 7
## 3036            Manhattan    Private room              3                 7
## 3037               Queens    Private room              1               108
## 3038             Brooklyn    Private room              3                15
## 3039               Queens    Private room              5                95
## 3040             Brooklyn Entire home/apt              3               123
## 3041             Brooklyn    Private room              4               245
## 3042             Brooklyn Entire home/apt              3               156
## 3043            Manhattan Entire home/apt              2                71
## 3044            Manhattan    Private room              1               245
## 3045             Brooklyn Entire home/apt              5                11
## 3046               Queens    Private room             25                 8
## 3047               Queens Entire home/apt              4                17
## 3048             Brooklyn    Private room              3                 1
## 3049             Brooklyn Entire home/apt              3                57
## 3050            Manhattan Entire home/apt              2                18
## 3051             Brooklyn Entire home/apt             14                29
## 3052             Brooklyn Entire home/apt              8                79
## 3053            Manhattan    Private room              1                 1
## 3054            Manhattan Entire home/apt              5                17
## 3055             Brooklyn Entire home/apt              3                 5
## 3056            Manhattan     Shared room              3               229
## 3057             Brooklyn    Private room              1                 1
## 3058             Brooklyn Entire home/apt              2                52
## 3059             Brooklyn Entire home/apt              1                16
## 3060            Manhattan Entire home/apt              3                 9
## 3061             Brooklyn Entire home/apt              2               166
## 3062            Manhattan    Private room              4                29
## 3063            Manhattan    Private room             30                20
## 3064            Manhattan    Private room              4                10
## 3065             Brooklyn    Private room             10                 5
## 3066             Brooklyn Entire home/apt              7                37
## 3067                Bronx Entire home/apt              5                 1
## 3068             Brooklyn Entire home/apt              3                32
## 3069            Manhattan Entire home/apt              2               230
## 3070             Brooklyn Entire home/apt              7                 1
## 3071             Brooklyn Entire home/apt              2                72
## 3072            Manhattan    Private room              3                 1
## 3073                Bronx Entire home/apt              3                84
## 3074               Queens Entire home/apt              2                97
## 3075            Manhattan Entire home/apt              3               177
## 3076            Manhattan Entire home/apt             21                 2
## 3077            Manhattan Entire home/apt              1               261
## 3078               Queens Entire home/apt              3                77
## 3079            Manhattan Entire home/apt              1                18
## 3080             Brooklyn Entire home/apt              5                36
## 3081            Manhattan    Private room              7                19
## 3082             Brooklyn Entire home/apt              1                 2
## 3083             Brooklyn    Private room             25                16
## 3084            Manhattan    Private room              2                36
## 3085             Brooklyn Entire home/apt              3                76
## 3086             Brooklyn Entire home/apt             14                10
## 3087             Brooklyn Entire home/apt              6                 7
## 3088            Manhattan    Private room              4                57
## 3089            Manhattan Entire home/apt              4                 4
## 3090             Brooklyn Entire home/apt              3               177
## 3091             Brooklyn Entire home/apt             30                13
## 3092             Brooklyn Entire home/apt              5                39
## 3093            Manhattan Entire home/apt              3                41
## 3094               Queens Entire home/apt              5                 2
## 3095            Manhattan Entire home/apt              1                87
## 3096             Brooklyn    Private room              2                12
## 3097               Queens Entire home/apt              1                89
## 3098            Manhattan Entire home/apt              2               221
## 3099            Manhattan Entire home/apt              3                 2
## 3100            Manhattan Entire home/apt              4                30
## 3101            Manhattan Entire home/apt              5                26
## 3102             Brooklyn Entire home/apt              1                 1
## 3103             Brooklyn Entire home/apt              6                 5
## 3104                Bronx Entire home/apt             30                16
## 3105            Manhattan Entire home/apt             18                34
## 3106             Brooklyn Entire home/apt              2                88
## 3107            Manhattan Entire home/apt              1                 6
## 3108             Brooklyn Entire home/apt              3               225
## 3109            Manhattan Entire home/apt              2                85
## 3110            Manhattan    Private room              2                 6
## 3111            Manhattan Entire home/apt              5                 8
## 3112            Manhattan Entire home/apt              2                 7
## 3113            Manhattan Entire home/apt              1                 1
## 3114             Brooklyn Entire home/apt              3                 6
## 3115             Brooklyn    Private room              1                25
## 3116             Brooklyn Entire home/apt              2                31
## 3117             Brooklyn    Private room              5                62
## 3118             Brooklyn Entire home/apt              7                 6
## 3119            Manhattan    Private room              3               160
## 3120             Brooklyn Entire home/apt             30                26
## 3121            Manhattan    Private room              1               157
## 3122            Manhattan    Private room              2               191
## 3123            Manhattan Entire home/apt             30                19
## 3124            Manhattan    Private room              2                 7
## 3125             Brooklyn    Private room              3                15
## 3126            Manhattan Entire home/apt              3                 9
## 3127            Manhattan Entire home/apt              1                20
## 3128            Manhattan Entire home/apt              1                73
## 3129             Brooklyn    Private room              4                 3
## 3130             Brooklyn Entire home/apt             30                 7
## 3131            Manhattan Entire home/apt             10                59
## 3132            Manhattan    Private room              1                 1
## 3133             Brooklyn    Private room              5                84
## 3134            Manhattan Entire home/apt              1               214
## 3135               Queens Entire home/apt              3                38
## 3136             Brooklyn Entire home/apt              3               164
## 3137             Brooklyn Entire home/apt              5                19
## 3138            Manhattan    Private room              3                38
## 3139            Manhattan    Private room              2               272
## 3140            Manhattan Entire home/apt              3                12
## 3141            Manhattan Entire home/apt              2                 2
## 3142             Brooklyn Entire home/apt              2                43
## 3143             Brooklyn    Private room              5                 3
## 3144             Brooklyn    Private room              3               176
## 3145             Brooklyn    Private room              1                93
## 3146               Queens    Private room              3                49
## 3147            Manhattan Entire home/apt              2                 5
## 3148            Manhattan Entire home/apt              3                 1
## 3149            Manhattan Entire home/apt              3               136
## 3150            Manhattan Entire home/apt              7                 6
## 3151            Manhattan    Private room              4                37
## 3152            Manhattan Entire home/apt              5                19
## 3153            Manhattan Entire home/apt              5                 7
## 3154             Brooklyn Entire home/apt              4                 2
## 3155             Brooklyn Entire home/apt              2                15
## 3156            Manhattan    Private room              3                97
## 3157             Brooklyn Entire home/apt              3               154
## 3158             Brooklyn Entire home/apt              4                42
## 3159            Manhattan Entire home/apt              3               127
## 3160             Brooklyn    Private room             30                 4
## 3161             Brooklyn Entire home/apt              1                 3
## 3162            Manhattan    Private room              1                12
## 3163                Bronx    Private room              2               143
## 3164             Brooklyn Entire home/apt             30                 4
## 3165             Brooklyn     Shared room              1                 7
## 3166            Manhattan Entire home/apt              1                 5
## 3167            Manhattan Entire home/apt              2                18
## 3168            Manhattan    Private room              4                 9
## 3169            Manhattan    Private room              2                19
## 3170            Manhattan Entire home/apt              5               221
## 3171            Manhattan Entire home/apt              2                 4
## 3172               Queens Entire home/apt             30                64
## 3173            Manhattan Entire home/apt              5               220
## 3174            Manhattan Entire home/apt              2                 7
## 3175            Manhattan    Private room              2                36
## 3176             Brooklyn Entire home/apt              2               237
## 3177             Brooklyn Entire home/apt              5                 9
## 3178             Brooklyn    Private room              1                13
## 3179             Brooklyn Entire home/apt              5                68
## 3180             Brooklyn Entire home/apt              2               100
## 3181            Manhattan Entire home/apt              1                78
## 3182            Manhattan Entire home/apt              2                17
## 3183            Manhattan    Private room             12                26
## 3184             Brooklyn Entire home/apt              4                20
## 3185            Manhattan Entire home/apt              3                16
## 3186            Manhattan Entire home/apt              6                 4
## 3187            Manhattan    Private room              1                31
## 3188               Queens Entire home/apt              3                 1
## 3189             Brooklyn    Private room              2                 7
## 3190            Manhattan Entire home/apt             30                24
## 3191               Queens Entire home/apt              3                19
## 3192            Manhattan Entire home/apt              3                 1
## 3193               Queens    Private room              3                26
## 3194            Manhattan Entire home/apt              7                57
## 3195               Queens Entire home/apt              3                82
## 3196             Brooklyn    Private room              1               111
## 3197            Manhattan    Private room              3                11
## 3198            Manhattan Entire home/apt              4                12
## 3199            Manhattan Entire home/apt              4                72
## 3200            Manhattan Entire home/apt              1               114
## 3201             Brooklyn    Private room              1                67
## 3202             Brooklyn Entire home/apt              4                 1
## 3203            Manhattan Entire home/apt              5                25
## 3204               Queens Entire home/apt              1                 2
## 3205            Manhattan    Private room             24                89
## 3206             Brooklyn Entire home/apt              3                 1
## 3207             Brooklyn Entire home/apt              4                11
## 3208             Brooklyn    Private room              2                 2
## 3209            Manhattan Entire home/apt              5                37
## 3210            Manhattan Entire home/apt              2                11
## 3211             Brooklyn    Private room              1                89
## 3212             Brooklyn    Private room              2               203
## 3213            Manhattan    Private room              4                67
## 3214             Brooklyn Entire home/apt              2                 3
## 3215            Manhattan Entire home/apt              1                56
## 3216               Queens    Private room              1                 1
## 3217            Manhattan Entire home/apt              2                 1
## 3218             Brooklyn    Private room              2               199
## 3219             Brooklyn Entire home/apt              2                 4
## 3220            Manhattan Entire home/apt              5                54
## 3221            Manhattan Entire home/apt              3                58
## 3222             Brooklyn    Private room             90                13
## 3223             Brooklyn Entire home/apt              1               200
## 3224             Brooklyn Entire home/apt              1               215
## 3225            Manhattan    Private room              7                 1
## 3226            Manhattan Entire home/apt             45                21
## 3227            Manhattan Entire home/apt              5                 8
## 3228            Manhattan Entire home/apt              5                 4
## 3229            Manhattan    Private room              7                 7
## 3230            Manhattan    Private room             13                42
## 3231            Manhattan    Private room              1                 1
## 3232            Manhattan Entire home/apt              7                 3
## 3233             Brooklyn    Private room              2               226
## 3234            Manhattan Entire home/apt              7                 3
## 3235                Bronx Entire home/apt              1                 1
## 3236            Manhattan    Private room             30                42
## 3237             Brooklyn Entire home/apt              2                14
## 3238            Manhattan    Private room              4                19
## 3239            Manhattan Entire home/apt              3                 2
## 3240            Manhattan    Private room              2                 2
## 3241               Queens    Private room             15                 6
## 3242             Brooklyn    Private room              1                17
## 3243             Brooklyn    Private room              3               130
## 3244             Brooklyn Entire home/apt              3                 3
## 3245            Manhattan Entire home/apt              2               177
## 3246             Brooklyn    Private room              2               129
## 3247             Brooklyn Entire home/apt              5                34
## 3248             Brooklyn    Private room              7                 5
## 3249            Manhattan Entire home/apt              2                31
## 3250            Manhattan    Private room              5                 2
## 3251             Brooklyn Entire home/apt              3                 9
## 3252             Brooklyn Entire home/apt             30                 8
## 3253             Brooklyn    Private room              4                 4
## 3254             Brooklyn Entire home/apt              4                 8
## 3255             Brooklyn Entire home/apt              2                43
## 3256            Manhattan Entire home/apt              1                 1
## 3257            Manhattan Entire home/apt              8                 5
## 3258             Brooklyn Entire home/apt              3                14
## 3259             Brooklyn Entire home/apt             10                58
## 3260             Brooklyn    Private room              2                19
## 3261             Brooklyn Entire home/apt              3               209
## 3262               Queens Entire home/apt             14                 6
## 3263            Manhattan Entire home/apt              1                 2
## 3264             Brooklyn Entire home/apt              5                 1
## 3265            Manhattan Entire home/apt             14                 1
## 3266                Bronx    Private room              4                26
## 3267             Brooklyn    Private room              1                 2
## 3268             Brooklyn Entire home/apt              3                 1
## 3269             Brooklyn Entire home/apt              2                10
## 3270            Manhattan Entire home/apt             90                54
## 3271            Manhattan    Private room              1                16
## 3272            Manhattan Entire home/apt             28                92
## 3273            Manhattan Entire home/apt              3                 2
## 3274            Manhattan    Private room              7               130
## 3275             Brooklyn Entire home/apt              4                74
## 3276            Manhattan Entire home/apt              4                52
## 3277             Brooklyn Entire home/apt             30                17
## 3278             Brooklyn Entire home/apt              4                52
## 3279             Brooklyn    Private room              1                64
## 3280             Brooklyn Entire home/apt              2                28
## 3281            Manhattan Entire home/apt              2                 3
## 3282            Manhattan Entire home/apt              7                55
## 3283             Brooklyn Entire home/apt              4                 6
## 3284             Brooklyn    Private room              3                19
## 3285            Manhattan Entire home/apt              9                 9
## 3286             Brooklyn    Private room              1                 9
## 3287            Manhattan Entire home/apt             90                20
## 3288             Brooklyn Entire home/apt              4                45
## 3289               Queens    Private room              1               275
## 3290            Manhattan Entire home/apt              2                 8
## 3291               Queens Entire home/apt              7                27
## 3292            Manhattan Entire home/apt              2                21
## 3293            Manhattan Entire home/apt              4               105
## 3294             Brooklyn    Private room              5                77
## 3295             Brooklyn Entire home/apt              2                 6
## 3296            Manhattan Entire home/apt             30                26
## 3297            Manhattan Entire home/apt              3                 6
## 3298            Manhattan    Private room              3                10
## 3299             Brooklyn Entire home/apt              2                24
## 3300             Brooklyn Entire home/apt              3                 3
## 3301             Brooklyn    Private room              3                 2
## 3302             Brooklyn Entire home/apt              1                19
## 3303            Manhattan Entire home/apt              3                 2
## 3304            Manhattan Entire home/apt             30                 1
## 3305               Queens Entire home/apt              2                57
## 3306            Manhattan Entire home/apt              3                 3
## 3307            Manhattan    Private room              2                10
## 3308             Brooklyn    Private room              3                87
## 3309             Brooklyn Entire home/apt              3                 7
## 3310             Brooklyn Entire home/apt             30                 5
## 3311             Brooklyn    Private room              3                70
## 3312             Brooklyn Entire home/apt             30                 4
## 3313            Manhattan Entire home/apt              3                 4
## 3314             Brooklyn    Private room              1                20
## 3315            Manhattan Entire home/apt             14                17
## 3316               Queens Entire home/apt              3                 7
## 3317             Brooklyn    Private room             10                72
## 3318            Manhattan    Private room             14                66
## 3319             Brooklyn    Private room              5                 8
## 3320            Manhattan     Shared room              2                16
## 3321             Brooklyn Entire home/apt             29                16
## 3322             Brooklyn Entire home/apt             10                 4
## 3323            Manhattan Entire home/apt              1               205
## 3324            Manhattan Entire home/apt              2                 4
## 3325             Brooklyn    Private room              5                44
## 3326            Manhattan Entire home/apt              1                 4
## 3327            Manhattan Entire home/apt              1               353
## 3328            Manhattan Entire home/apt              6                 4
## 3329               Queens Entire home/apt              3                80
## 3330            Manhattan    Private room              3               191
## 3331            Manhattan Entire home/apt              2                96
## 3332             Brooklyn    Private room              1                98
## 3333             Brooklyn Entire home/apt             30                 4
## 3334             Brooklyn Entire home/apt             30                 4
## 3335            Manhattan Entire home/apt              8                37
## 3336            Manhattan Entire home/apt              4                34
## 3337             Brooklyn    Private room              1                 4
## 3338             Brooklyn Entire home/apt              2                49
## 3339             Brooklyn Entire home/apt              3               122
## 3340            Manhattan Entire home/apt              3                23
## 3341               Queens    Private room              5                11
## 3342            Manhattan Entire home/apt             30                16
## 3343            Manhattan    Private room              3                 1
## 3344             Brooklyn Entire home/apt              2               131
## 3345            Manhattan Entire home/apt              5                25
## 3346               Queens Entire home/apt              2               162
## 3347            Manhattan Entire home/apt              2                14
## 3348             Brooklyn Entire home/apt              3               125
## 3349            Manhattan    Private room              2                 4
## 3350            Manhattan Entire home/apt              2                 8
## 3351            Manhattan    Private room              1                 1
## 3352            Manhattan    Private room              2               138
## 3353            Manhattan    Private room              5                44
## 3354            Manhattan Entire home/apt              2                12
## 3355             Brooklyn    Private room              1                52
## 3356             Brooklyn    Private room              1                 1
## 3357            Manhattan    Private room              2               150
## 3358            Manhattan    Private room              3               177
## 3359            Manhattan    Private room             60                43
## 3360             Brooklyn Entire home/apt              4               233
## 3361            Manhattan Entire home/apt              3                 2
## 3362             Brooklyn    Private room              2                 8
## 3363               Queens    Private room              1                10
## 3364            Manhattan Entire home/apt              7                29
## 3365             Brooklyn Entire home/apt              3               104
## 3366             Brooklyn    Private room             30                10
## 3367             Brooklyn Entire home/apt              2               172
## 3368             Brooklyn Entire home/apt            200               314
## 3369             Brooklyn Entire home/apt              2               159
## 3370               Queens    Private room             29                37
## 3371             Brooklyn Entire home/apt              1                 1
## 3372            Manhattan    Private room              5                98
## 3373             Brooklyn Entire home/apt              5                 9
## 3374             Brooklyn Entire home/apt              5                 2
## 3375            Manhattan Entire home/apt              4               216
## 3376             Brooklyn    Private room              3                40
## 3377            Manhattan Entire home/apt              1                 5
## 3378             Brooklyn    Private room              3                90
## 3379            Manhattan Entire home/apt              6                29
## 3380            Manhattan Entire home/apt             30                 2
## 3381            Manhattan    Private room              2                13
## 3382             Brooklyn    Private room              2                13
## 3383            Manhattan    Private room              3                82
## 3384             Brooklyn    Private room              4                 3
## 3385               Queens    Private room              7                14
## 3386            Manhattan Entire home/apt              6                 1
## 3387             Brooklyn    Private room              2               183
## 3388             Brooklyn Entire home/apt             30                 6
## 3389             Brooklyn Entire home/apt              2                 6
## 3390            Manhattan Entire home/apt              3                22
## 3391            Manhattan Entire home/apt              3                25
## 3392            Manhattan Entire home/apt              3               142
## 3393            Manhattan    Private room             30                 8
## 3394            Manhattan Entire home/apt              4                 8
## 3395             Brooklyn Entire home/apt              2                94
## 3396            Manhattan    Private room              2                79
## 3397            Manhattan Entire home/apt              5                 3
## 3398            Manhattan Entire home/apt              5                 9
## 3399            Manhattan    Private room              1               259
## 3400            Manhattan Entire home/apt              2                46
## 3401             Brooklyn    Private room              2               145
## 3402             Brooklyn Entire home/apt              8                23
## 3403            Manhattan Entire home/apt              2                 2
## 3404             Brooklyn    Private room              2                 1
## 3405            Manhattan Entire home/apt              5                81
## 3406            Manhattan    Private room              1               271
## 3407            Manhattan Entire home/apt              2                 3
## 3408            Manhattan    Private room              7                 9
## 3409            Manhattan    Private room              2                38
## 3410            Manhattan Entire home/apt              1                 8
## 3411             Brooklyn Entire home/apt              4                 9
## 3412             Brooklyn Entire home/apt              2                 4
## 3413            Manhattan Entire home/apt              2                 2
## 3414             Brooklyn Entire home/apt              3               169
## 3415            Manhattan Entire home/apt              6                65
## 3416            Manhattan    Private room              1                59
## 3417            Manhattan    Private room              1               136
## 3418            Manhattan Entire home/apt              2               120
## 3419            Manhattan    Private room              2               121
## 3420            Manhattan Entire home/apt              3                 9
## 3421            Manhattan Entire home/apt              1                21
## 3422             Brooklyn    Private room              3                 3
## 3423            Manhattan    Private room              2                 2
## 3424             Brooklyn Entire home/apt              4               138
## 3425            Manhattan Entire home/apt              3               107
## 3426             Brooklyn    Private room              4                 8
## 3427            Manhattan Entire home/apt              1               153
## 3428            Manhattan Entire home/apt              3                 1
## 3429            Manhattan Entire home/apt              7                19
## 3430             Brooklyn    Private room              2                26
## 3431            Manhattan    Private room              2                17
## 3432            Manhattan Entire home/apt              7                 1
## 3433            Manhattan Entire home/apt              2                47
## 3434            Manhattan Entire home/apt              3                20
## 3435                Bronx    Private room              2                11
## 3436             Brooklyn Entire home/apt              5                11
## 3437             Brooklyn Entire home/apt              3                10
## 3438            Manhattan    Private room              1                 4
## 3439            Manhattan    Private room              2               146
## 3440            Manhattan Entire home/apt              1                28
## 3441             Brooklyn     Shared room              1               146
## 3442            Manhattan     Shared room             30               125
## 3443               Queens Entire home/apt              4                 2
## 3444               Queens    Private room             15                15
## 3445            Manhattan Entire home/apt              7                22
## 3446            Manhattan Entire home/apt              2                 2
## 3447             Brooklyn Entire home/apt              5                 1
## 3448             Brooklyn Entire home/apt              2                25
## 3449            Manhattan Entire home/apt              2                 2
## 3450            Manhattan Entire home/apt              3                11
## 3451             Brooklyn Entire home/apt              2                28
## 3452            Manhattan Entire home/apt              1                 2
## 3453            Manhattan Entire home/apt              1                 3
## 3454             Brooklyn Entire home/apt              2               281
## 3455             Brooklyn    Private room              5                42
## 3456             Brooklyn Entire home/apt             13               109
## 3457            Manhattan    Private room              3                 7
## 3458            Manhattan    Private room              5                 1
## 3459            Manhattan Entire home/apt             30                 4
## 3460            Manhattan Entire home/apt              1                 2
## 3461            Manhattan Entire home/apt              2                 5
## 3462             Brooklyn    Private room              3                10
## 3463             Brooklyn    Private room             14                 1
## 3464             Brooklyn Entire home/apt              4                21
## 3465            Manhattan Entire home/apt             30                 3
## 3466             Brooklyn Entire home/apt             30                 4
## 3467            Manhattan Entire home/apt              1                 5
## 3468            Manhattan Entire home/apt              3                41
## 3469            Manhattan    Private room              1                21
## 3470            Manhattan Entire home/apt              2               252
## 3471             Brooklyn    Private room              4                 3
## 3472            Manhattan Entire home/apt             30                22
## 3473            Manhattan Entire home/apt              1                15
## 3474             Brooklyn Entire home/apt              2                 6
## 3475               Queens Entire home/apt              2                 5
## 3476            Manhattan Entire home/apt             26                 1
## 3477            Manhattan Entire home/apt              2                 1
## 3478            Manhattan    Private room              1               133
## 3479             Brooklyn    Private room              3               152
## 3480             Brooklyn Entire home/apt             30                 3
## 3481             Brooklyn    Private room              2               211
## 3482             Brooklyn Entire home/apt             30                 2
## 3483               Queens    Private room              2                13
## 3484            Manhattan Entire home/apt              2                48
## 3485            Manhattan Entire home/apt              3                 8
## 3486            Manhattan Entire home/apt              5                 9
## 3487             Brooklyn Entire home/apt             30                28
## 3488            Manhattan    Private room              3                 1
## 3489            Manhattan    Private room              1               170
## 3490            Manhattan Entire home/apt              1                 7
## 3491             Brooklyn Entire home/apt              2                 3
## 3492            Manhattan    Private room              3                 6
## 3493             Brooklyn Entire home/apt              2                97
## 3494             Brooklyn    Private room              4                 2
## 3495             Brooklyn    Private room              4               106
## 3496            Manhattan    Private room              5                 8
## 3497            Manhattan Entire home/apt              1                 5
## 3498            Manhattan    Private room              1               227
## 3499            Manhattan Entire home/apt              2                 3
## 3500            Manhattan Entire home/apt              2                14
## 3501                Bronx Entire home/apt              7                 2
## 3502            Manhattan Entire home/apt              1                 8
## 3503             Brooklyn    Private room              3                 5
## 3504               Queens Entire home/apt              3                33
## 3505            Manhattan Entire home/apt              2                 1
## 3506             Brooklyn Entire home/apt             10                 8
## 3507            Manhattan Entire home/apt              2               146
## 3508            Manhattan Entire home/apt              1                11
## 3509             Brooklyn    Private room              4                 4
## 3510             Brooklyn Entire home/apt              1               141
## 3511               Queens Entire home/apt              1                52
## 3512            Manhattan Entire home/apt              2                30
## 3513            Manhattan Entire home/apt              2                 3
## 3514            Manhattan    Private room              1                 4
## 3515            Manhattan Entire home/apt              1                49
## 3516            Manhattan    Private room              3                 1
## 3517             Brooklyn Entire home/apt              4               204
## 3518             Brooklyn Entire home/apt              2               110
## 3519            Manhattan Entire home/apt              3                45
## 3520             Brooklyn Entire home/apt              7                32
## 3521             Brooklyn Entire home/apt             30                 3
## 3522             Brooklyn Entire home/apt              3                13
## 3523            Manhattan    Private room              3                11
## 3524            Manhattan    Private room              3               242
## 3525            Manhattan    Private room              2                80
## 3526               Queens    Private room              3               106
## 3527             Brooklyn Entire home/apt              2               232
## 3528             Brooklyn    Private room              3                52
## 3529            Manhattan Entire home/apt             30                11
## 3530            Manhattan Entire home/apt              5                13
## 3531             Brooklyn    Private room             30                16
## 3532             Brooklyn    Private room             90                 2
## 3533            Manhattan    Private room              2                76
## 3534             Brooklyn Entire home/apt              5                 7
## 3535             Brooklyn Entire home/apt              2                17
## 3536            Manhattan Entire home/apt              3                82
## 3537            Manhattan    Private room              1               196
## 3538             Brooklyn    Private room              5                 4
## 3539             Brooklyn    Private room              2                 9
## 3540             Brooklyn    Private room             10                19
## 3541               Queens    Private room              2               183
## 3542             Brooklyn Entire home/apt              1                75
## 3543               Queens Entire home/apt             30                 9
## 3544            Manhattan Entire home/apt              2                26
## 3545            Manhattan Entire home/apt              5               176
## 3546             Brooklyn Entire home/apt              1                11
## 3547             Brooklyn Entire home/apt             30                14
## 3548             Brooklyn    Private room              3                 8
## 3549             Brooklyn    Private room              1               126
## 3550             Brooklyn Entire home/apt              1                 1
## 3551            Manhattan Entire home/apt              1                75
## 3552            Manhattan Entire home/apt              3                 4
## 3553            Manhattan    Private room              4                23
## 3554               Queens Entire home/apt              3               106
## 3555            Manhattan    Private room              3                30
## 3556               Queens    Private room              2                27
## 3557            Manhattan Entire home/apt              2                53
## 3558             Brooklyn Entire home/apt              2               193
## 3559            Manhattan Entire home/apt              4               137
## 3560             Brooklyn Entire home/apt             30                28
## 3561             Brooklyn Entire home/apt              3                74
## 3562             Brooklyn Entire home/apt              3               149
## 3563             Brooklyn    Private room              1                30
## 3564                Bronx     Shared room              2                 6
## 3565             Brooklyn    Private room              3                16
## 3566            Manhattan    Private room              1                 5
## 3567             Brooklyn    Private room             21                39
## 3568             Brooklyn    Private room              1                16
## 3569             Brooklyn Entire home/apt              5                22
## 3570             Brooklyn Entire home/apt              5                21
## 3571            Manhattan Entire home/apt              5                 8
## 3572            Manhattan    Private room              2               182
## 3573             Brooklyn    Private room              1                99
## 3574            Manhattan Entire home/apt              2                 3
## 3575            Manhattan    Private room              3                13
## 3576             Brooklyn Entire home/apt              2                 1
## 3577             Brooklyn     Shared room              5                34
## 3578             Brooklyn    Private room              1                35
## 3579            Manhattan    Private room              2               130
## 3580             Brooklyn Entire home/apt              2                13
## 3581            Manhattan Entire home/apt             30                14
## 3582             Brooklyn Entire home/apt              1                12
## 3583            Manhattan    Private room              5               263
## 3584            Manhattan Entire home/apt              2                43
## 3585             Brooklyn Entire home/apt             10                 9
## 3586             Brooklyn    Private room              2               107
## 3587            Manhattan Entire home/apt             10                 1
## 3588            Manhattan    Private room              2                 2
## 3589            Manhattan    Private room              2                20
## 3590             Brooklyn     Shared room              5                76
## 3591             Brooklyn Entire home/apt              3                43
## 3592             Brooklyn Entire home/apt              3                 2
## 3593             Brooklyn    Private room              4                21
## 3594                Bronx    Private room              2                32
## 3595             Brooklyn Entire home/apt             30                 9
## 3596            Manhattan Entire home/apt             30                45
## 3597             Brooklyn Entire home/apt              2                 8
## 3598            Manhattan    Private room              3                 8
## 3599            Manhattan Entire home/apt              2                 8
## 3600             Brooklyn    Private room              5                 8
## 3601               Queens    Private room              2                37
## 3602             Brooklyn    Private room              1               143
## 3603            Manhattan Entire home/apt              1                10
## 3604            Manhattan Entire home/apt              3                 2
## 3605             Brooklyn    Private room              1                35
## 3606             Brooklyn Entire home/apt              1                 7
## 3607            Manhattan Entire home/apt             14                12
## 3608            Manhattan Entire home/apt              1                78
## 3609            Manhattan    Private room              3                 3
## 3610            Manhattan    Private room              1               184
## 3611             Brooklyn Entire home/apt              6                 1
## 3612             Brooklyn Entire home/apt              5                 7
## 3613             Brooklyn    Private room              2                20
## 3614             Brooklyn Entire home/apt              7                13
## 3615            Manhattan Entire home/apt            365                 6
## 3616            Manhattan Entire home/apt              1                94
## 3617             Brooklyn Entire home/apt             30                 1
## 3618             Brooklyn Entire home/apt              2                 1
## 3619             Brooklyn    Private room              2                21
## 3620            Manhattan Entire home/apt             14               177
## 3621               Queens    Private room              7               186
## 3622             Brooklyn    Private room              2                16
## 3623            Manhattan     Shared room              1                94
## 3624             Brooklyn Entire home/apt              3                 5
## 3625            Manhattan    Private room              2                27
## 3626               Queens Entire home/apt              1                13
## 3627             Brooklyn Entire home/apt              7                26
## 3628             Brooklyn Entire home/apt             30                 3
## 3629             Brooklyn Entire home/apt             30                35
## 3630            Manhattan Entire home/apt              1                 2
## 3631               Queens    Private room              3                 8
## 3632             Brooklyn    Private room              1                 2
## 3633            Manhattan    Private room              5                20
## 3634             Brooklyn Entire home/apt              7                 7
## 3635            Manhattan    Private room              5               196
## 3636             Brooklyn    Private room              4               171
## 3637             Brooklyn Entire home/apt             30                 2
## 3638             Brooklyn    Private room              4                66
## 3639            Manhattan    Private room              2               173
## 3640            Manhattan Entire home/apt              3               157
## 3641             Brooklyn Entire home/apt              2               157
## 3642            Manhattan Entire home/apt              1                18
## 3643            Manhattan Entire home/apt            270                 5
## 3644            Manhattan    Private room              8                15
## 3645             Brooklyn    Private room              2               156
## 3646             Brooklyn    Private room              2               142
## 3647            Manhattan    Private room              1                19
## 3648            Manhattan Entire home/apt              6                55
## 3649            Manhattan    Private room              3               150
## 3650             Brooklyn Entire home/apt              4                32
## 3651             Brooklyn Entire home/apt              7                21
## 3652             Brooklyn Entire home/apt              6                 6
## 3653            Manhattan    Private room              2                32
## 3654            Manhattan Entire home/apt              1                20
## 3655            Manhattan Entire home/apt              4                 3
## 3656             Brooklyn Entire home/apt              3               232
## 3657            Manhattan Entire home/apt              5                 3
## 3658             Brooklyn Entire home/apt              2                46
## 3659             Brooklyn    Private room              3                 5
## 3660             Brooklyn    Private room              2                 3
## 3661               Queens Entire home/apt              3               146
## 3662            Manhattan    Private room              6                13
## 3663             Brooklyn    Private room              1                38
## 3664               Queens Entire home/apt              7                50
## 3665               Queens    Private room              3                 1
## 3666            Manhattan Entire home/apt              1                87
## 3667            Manhattan Entire home/apt             14                22
## 3668               Queens    Private room             14                19
## 3669               Queens    Private room             10                 1
## 3670            Manhattan Entire home/apt              2                52
## 3671            Manhattan Entire home/apt              2                 3
## 3672            Manhattan    Private room              1               158
## 3673             Brooklyn    Private room              1                 1
## 3674               Queens Entire home/apt              1                 1
## 3675             Brooklyn Entire home/apt              1                 2
## 3676             Brooklyn Entire home/apt              5                 7
## 3677             Brooklyn    Private room              1               162
## 3678             Brooklyn    Private room              1                40
## 3679             Brooklyn    Private room              1                96
## 3680             Brooklyn    Private room              1                90
## 3681             Brooklyn Entire home/apt              2                15
## 3682            Manhattan Entire home/apt              2                45
## 3683            Manhattan Entire home/apt             30                16
## 3684             Brooklyn    Private room              1                 1
## 3685             Brooklyn Entire home/apt              2                 3
## 3686            Manhattan Entire home/apt              1                32
## 3687            Manhattan    Private room              1                 1
## 3688             Brooklyn    Private room              3                 5
## 3689               Queens    Private room              1                13
## 3690            Manhattan    Private room              2                26
## 3691            Manhattan Entire home/apt              5               124
## 3692             Brooklyn Entire home/apt              1                24
## 3693                Bronx    Private room              6                40
## 3694            Manhattan Entire home/apt              1               156
## 3695             Brooklyn Entire home/apt              3               168
## 3696            Manhattan Entire home/apt             30                 9
## 3697            Manhattan Entire home/apt              6                 2
## 3698            Manhattan Entire home/apt              1               208
## 3699            Manhattan    Private room              2               124
## 3700            Manhattan    Private room              4                 7
## 3701             Brooklyn    Private room              7                 1
## 3702             Brooklyn    Private room              2                38
## 3703            Manhattan    Private room              1                86
## 3704            Manhattan    Private room              3               298
## 3705             Brooklyn    Private room             15                 1
## 3706             Brooklyn Entire home/apt              4                22
## 3707             Brooklyn    Private room              9                12
## 3708            Manhattan     Shared room              1                10
## 3709             Brooklyn Entire home/apt              6                 6
## 3710             Brooklyn Entire home/apt             10                40
## 3711            Manhattan    Private room              5               109
## 3712            Manhattan    Private room              3                 2
## 3713             Brooklyn Entire home/apt             14                 2
## 3714            Manhattan Entire home/apt             13                 2
## 3715            Manhattan Entire home/apt             30                 2
## 3716            Manhattan    Private room              3                23
## 3717               Queens Entire home/apt              2                14
## 3718             Brooklyn    Private room              1                44
## 3719             Brooklyn    Private room             10                 2
## 3720            Manhattan    Private room              3                51
## 3721             Brooklyn    Private room              1                 4
## 3722             Brooklyn    Private room              7                30
## 3723             Brooklyn Entire home/apt              3               227
## 3724             Brooklyn    Private room              1                 1
## 3725             Brooklyn    Private room              1                 3
## 3726            Manhattan Entire home/apt              6                15
## 3727             Brooklyn Entire home/apt             20                 7
## 3728             Brooklyn Entire home/apt              3                54
## 3729             Brooklyn Entire home/apt              5                16
## 3730             Brooklyn Entire home/apt              4                19
## 3731            Manhattan Entire home/apt              7                 6
## 3732            Manhattan Entire home/apt             30                 7
## 3733            Manhattan Entire home/apt              5                 9
## 3734        Staten Island    Private room              1                40
## 3735            Manhattan Entire home/apt              3                 8
## 3736            Manhattan Entire home/apt              2                 1
## 3737             Brooklyn Entire home/apt             30                99
## 3738                Bronx    Private room              2                12
## 3739            Manhattan Entire home/apt             30                 1
## 3740            Manhattan Entire home/apt             30                 4
## 3741            Manhattan Entire home/apt             30                 6
## 3742             Brooklyn    Private room              5                 5
## 3743            Manhattan    Private room              1               254
## 3744             Brooklyn Entire home/apt              5                10
## 3745             Brooklyn Entire home/apt              3                12
## 3746             Brooklyn    Private room              1                 7
## 3747                Bronx    Private room              3                 2
## 3748            Manhattan    Private room              2               228
## 3749             Brooklyn    Private room              1                60
## 3750             Brooklyn    Private room              1                25
## 3751            Manhattan Entire home/apt              4                12
## 3752             Brooklyn Entire home/apt              4                23
## 3753             Brooklyn Entire home/apt              1                 2
## 3754             Brooklyn Entire home/apt              1                 5
## 3755            Manhattan    Private room              3                 5
## 3756            Manhattan Entire home/apt             30                 1
## 3757            Manhattan    Private room              3                21
## 3758            Manhattan Entire home/apt             10                 4
## 3759            Manhattan    Private room              2                 6
## 3760             Brooklyn Entire home/apt              1               334
## 3761             Brooklyn Entire home/apt             28                22
## 3762               Queens Entire home/apt              3                25
## 3763             Brooklyn    Private room              5                50
## 3764             Brooklyn    Private room              2                51
## 3765             Brooklyn    Private room             22                21
## 3766             Brooklyn    Private room              1               151
## 3767            Manhattan Entire home/apt             60                 1
## 3768            Manhattan Entire home/apt             30                38
## 3769            Manhattan Entire home/apt             10                18
## 3770               Queens Entire home/apt              2                61
## 3771            Manhattan Entire home/apt              2                 1
## 3772            Manhattan Entire home/apt             30                13
## 3773             Brooklyn     Shared room              4                11
## 3774            Manhattan    Private room              1               103
## 3775             Brooklyn Entire home/apt              3                16
## 3776            Manhattan    Private room              4               143
## 3777            Manhattan Entire home/apt              3                32
## 3778             Brooklyn Entire home/apt             30                62
## 3779            Manhattan Entire home/apt              3                 2
## 3780             Brooklyn    Private room              5                 7
## 3781            Manhattan Entire home/apt              2                 9
## 3782             Brooklyn     Shared room              5                 8
## 3783               Queens    Private room              2                12
## 3784             Brooklyn    Private room              5                 6
## 3785            Manhattan Entire home/apt              3                 6
## 3786             Brooklyn Entire home/apt              1               104
## 3787             Brooklyn Entire home/apt             20                16
## 3788            Manhattan    Private room              3                24
## 3789                Bronx    Private room              3                46
## 3790             Brooklyn    Private room              2                32
## 3791            Manhattan    Private room              3                 1
## 3792            Manhattan    Private room              1               288
## 3793               Queens    Private room              5                66
## 3794             Brooklyn Entire home/apt              3                13
## 3795               Queens    Private room              2               126
## 3796            Manhattan    Private room              7                49
## 3797               Queens Entire home/apt              3                 4
## 3798            Manhattan Entire home/apt              5               132
## 3799             Brooklyn    Private room              2                53
## 3800             Brooklyn Entire home/apt             10                 1
## 3801            Manhattan    Private room              2               198
## 3802             Brooklyn    Private room              3                74
## 3803             Brooklyn Entire home/apt              1                 1
## 3804            Manhattan    Private room              1                 6
## 3805            Manhattan Entire home/apt              3                 7
## 3806               Queens Entire home/apt             30                 1
## 3807             Brooklyn Entire home/apt              3                95
## 3808            Manhattan    Private room              2                24
## 3809            Manhattan Entire home/apt             30                 8
## 3810               Queens    Private room              2               185
## 3811               Queens Entire home/apt              3                 7
## 3812            Manhattan    Private room              3                81
## 3813            Manhattan    Private room              3               100
## 3814            Manhattan Entire home/apt              5                16
## 3815             Brooklyn Entire home/apt              5                32
## 3816            Manhattan Entire home/apt              6                 5
## 3817            Manhattan    Private room              1                32
## 3818             Brooklyn Entire home/apt             30                 2
## 3819             Brooklyn Entire home/apt              7                 2
## 3820             Brooklyn Entire home/apt              2                 2
## 3821            Manhattan Entire home/apt              2                41
## 3822            Manhattan Entire home/apt              5                 4
## 3823             Brooklyn Entire home/apt             30                 7
## 3824             Brooklyn Entire home/apt              2                17
## 3825             Brooklyn Entire home/apt             28                23
## 3826             Brooklyn Entire home/apt            150                18
## 3827                Bronx    Private room              4                18
## 3828             Brooklyn    Private room              2                26
## 3829            Manhattan Entire home/apt              3                 7
## 3830            Manhattan Entire home/apt              1                 1
## 3831             Brooklyn Entire home/apt              2               129
## 3832             Brooklyn Entire home/apt             30                 3
## 3833             Brooklyn    Private room              4                 2
## 3834             Brooklyn Entire home/apt              4                65
## 3835               Queens    Private room              5                37
## 3836            Manhattan    Private room              2                 1
## 3837            Manhattan    Private room              4                 1
## 3838             Brooklyn Entire home/apt              3                92
## 3839            Manhattan Entire home/apt              1                19
## 3840             Brooklyn Entire home/apt              3                 2
## 3841             Brooklyn Entire home/apt              5                 6
## 3842            Manhattan Entire home/apt              2                23
## 3843               Queens Entire home/apt              1                 1
## 3844             Brooklyn    Private room              1                 3
## 3845             Brooklyn Entire home/apt              5               171
## 3846            Manhattan Entire home/apt              5                14
## 3847            Manhattan Entire home/apt              3                 6
## 3848            Manhattan Entire home/apt              1                 3
## 3849             Brooklyn    Private room              4                12
## 3850            Manhattan    Private room              3                89
## 3851               Queens    Private room              1               115
## 3852            Manhattan Entire home/apt              4                36
## 3853            Manhattan Entire home/apt              5                51
## 3854             Brooklyn    Private room              1               159
## 3855             Brooklyn Entire home/apt              5                33
## 3856             Brooklyn Entire home/apt              4                12
## 3857            Manhattan    Private room              2               267
## 3858            Manhattan Entire home/apt             30                 3
## 3859            Manhattan    Private room             30                65
## 3860            Manhattan     Shared room              2                65
## 3861               Queens    Private room              1                51
## 3862             Brooklyn    Private room              2               349
## 3863             Brooklyn Entire home/apt             13                 2
## 3864            Manhattan    Private room             12                43
## 3865            Manhattan    Private room              3                38
## 3866             Brooklyn Entire home/apt              5                 3
## 3867             Brooklyn Entire home/apt             10                 8
## 3868                Bronx     Shared room              7                10
## 3869             Brooklyn Entire home/apt             30                 5
## 3870             Brooklyn Entire home/apt             20                11
## 3871            Manhattan     Shared room              1               225
## 3872            Manhattan    Private room              5                24
## 3873             Brooklyn Entire home/apt             30                 3
## 3874            Manhattan    Private room              9                31
## 3875             Brooklyn Entire home/apt              2                52
## 3876            Manhattan Entire home/apt              6                 1
## 3877            Manhattan    Private room              1                 1
## 3878            Manhattan Entire home/apt             30               101
## 3879             Brooklyn Entire home/apt              3                 1
## 3880            Manhattan Entire home/apt              6                53
## 3881            Manhattan Entire home/apt              1                24
## 3882             Brooklyn    Private room              3               115
## 3883            Manhattan Entire home/apt              1                58
## 3884             Brooklyn Entire home/apt              5                42
## 3885            Manhattan    Private room              5                12
## 3886            Manhattan Entire home/apt             30                28
## 3887        Staten Island Entire home/apt              1                 1
## 3888             Brooklyn Entire home/apt              1                 2
## 3889             Brooklyn Entire home/apt             31                 1
## 3890            Manhattan Entire home/apt              1                 2
## 3891             Brooklyn Entire home/apt             30                22
## 3892               Queens    Private room              1                48
## 3893            Manhattan Entire home/apt              3                 1
## 3894               Queens    Private room              1                 1
## 3895             Brooklyn    Private room              5                11
## 3896             Brooklyn    Private room              3                19
## 3897            Manhattan    Private room              4                 1
## 3898               Queens Entire home/apt              1                 1
## 3899            Manhattan Entire home/apt              5                19
## 3900            Manhattan    Private room              3               209
## 3901            Manhattan Entire home/apt              2                15
## 3902               Queens Entire home/apt              4                45
## 3903                Bronx Entire home/apt              4                89
## 3904             Brooklyn    Private room              7                25
## 3905            Manhattan Entire home/apt             30                 5
## 3906             Brooklyn Entire home/apt              1               197
## 3907            Manhattan Entire home/apt              1                 1
## 3908            Manhattan    Private room             30                18
## 3909            Manhattan Entire home/apt              5                 6
## 3910            Manhattan Entire home/apt              4                 7
## 3911             Brooklyn Entire home/apt             30                 3
## 3912             Brooklyn    Private room              1                67
## 3913               Queens    Private room             50                30
## 3914            Manhattan Entire home/apt              3                18
## 3915            Manhattan Entire home/apt              1                 1
## 3916            Manhattan Entire home/apt              3                33
## 3917            Manhattan Entire home/apt              2               155
## 3918               Queens Entire home/apt              2               175
## 3919             Brooklyn Entire home/apt             30                 5
## 3920            Manhattan    Private room              1                34
## 3921            Manhattan    Private room              4               120
## 3922                Bronx    Private room              2               135
## 3923            Manhattan Entire home/apt              5                 4
## 3924            Manhattan Entire home/apt              2                67
## 3925             Brooklyn    Private room              2                11
## 3926            Manhattan    Private room              3               104
## 3927            Manhattan Entire home/apt             30                 8
## 3928             Brooklyn    Private room              7                18
## 3929            Manhattan Entire home/apt             30                 3
## 3930               Queens Entire home/apt              4                56
## 3931            Manhattan Entire home/apt             30                20
## 3932             Brooklyn Entire home/apt              5                 3
## 3933             Brooklyn Entire home/apt             29                 5
## 3934               Queens    Private room              2                55
## 3935             Brooklyn Entire home/apt              6                11
## 3936               Queens Entire home/apt              6                78
## 3937            Manhattan    Private room              2                65
## 3938             Brooklyn Entire home/apt              2                13
## 3939            Manhattan Entire home/apt             30                 4
## 3940             Brooklyn    Private room             30                 5
## 3941             Brooklyn    Private room              1                72
## 3942            Manhattan    Private room              1                 3
## 3943             Brooklyn    Private room             21                62
## 3944            Manhattan Entire home/apt              2                27
## 3945               Queens Entire home/apt              5                25
## 3946             Brooklyn Entire home/apt              2               110
## 3947               Queens    Private room              1                10
## 3948            Manhattan Entire home/apt             10                 6
## 3949             Brooklyn Entire home/apt              5               177
## 3950            Manhattan Entire home/apt              5                44
## 3951             Brooklyn Entire home/apt              2               132
## 3952            Manhattan Entire home/apt              4                 5
## 3953               Queens    Private room              2                48
## 3954        Staten Island    Private room              2               234
## 3955            Manhattan Entire home/apt             25                 3
## 3956             Brooklyn Entire home/apt              5               136
## 3957            Manhattan    Private room              2               255
## 3958               Queens    Private room              1               135
## 3959             Brooklyn    Private room              7                16
## 3960            Manhattan Entire home/apt              5                 2
## 3961             Brooklyn Entire home/apt              6                 2
## 3962             Brooklyn Entire home/apt              4                33
## 3963             Brooklyn    Private room              2                88
## 3964             Brooklyn    Private room              7                 6
## 3965            Manhattan Entire home/apt              1                 9
## 3966             Brooklyn Entire home/apt              1                44
## 3967             Brooklyn    Private room              2                42
## 3968             Brooklyn Entire home/apt              3                34
## 3969            Manhattan Entire home/apt              1                 1
## 3970             Brooklyn    Private room              2                 9
## 3971               Queens Entire home/apt              3                 2
## 3972             Brooklyn    Private room              6                10
## 3973             Brooklyn    Private room              1                91
## 3974             Brooklyn Entire home/apt              7                 5
## 3975             Brooklyn    Private room              1                56
## 3976            Manhattan    Private room              4                 9
## 3977            Manhattan    Private room             14                 9
## 3978             Brooklyn    Private room              2                71
## 3979             Brooklyn    Private room              4                65
## 3980             Brooklyn Entire home/apt              5                37
## 3981             Brooklyn Entire home/apt              3                 9
## 3982            Manhattan Entire home/apt              2                18
## 3983            Manhattan Entire home/apt              2                57
## 3984             Brooklyn Entire home/apt              4                65
## 3985             Brooklyn    Private room              2                 5
## 3986            Manhattan Entire home/apt              4               229
## 3987             Brooklyn    Private room              1                 4
## 3988            Manhattan Entire home/apt              2                32
## 3989            Manhattan Entire home/apt              1                46
## 3990            Manhattan    Private room              2               209
## 3991             Brooklyn Entire home/apt              1               183
## 3992               Queens    Private room              3                89
## 3993            Manhattan Entire home/apt              1                10
## 3994            Manhattan    Private room              3                60
## 3995             Brooklyn Entire home/apt              3                62
## 3996            Manhattan Entire home/apt              3                 6
## 3997               Queens    Private room              3               136
## 3998            Manhattan Entire home/apt            365                 9
## 3999               Queens    Private room              1                13
## 4000               Queens    Private room             30                 1
## 4001            Manhattan Entire home/apt              3               136
## 4002             Brooklyn Entire home/apt              1                 5
## 4003             Brooklyn Entire home/apt              1                 1
## 4004               Queens Entire home/apt              2                60
## 4005            Manhattan Entire home/apt              1                77
## 4006            Manhattan Entire home/apt              7                11
## 4007             Brooklyn Entire home/apt              3                13
## 4008            Manhattan Entire home/apt              2                13
## 4009            Manhattan     Shared room              1                 1
## 4010            Manhattan    Private room              1               365
## 4011             Brooklyn    Private room              1                 8
## 4012             Brooklyn    Private room              4               106
## 4013            Manhattan    Private room              1               152
## 4014            Manhattan    Private room              1                34
## 4015             Brooklyn    Private room              5                 2
## 4016             Brooklyn Entire home/apt              3                13
## 4017             Brooklyn Entire home/apt             14                 2
## 4018             Brooklyn    Private room              2                 2
## 4019            Manhattan Entire home/apt              4                44
## 4020            Manhattan    Private room              1               270
## 4021            Manhattan Entire home/apt              2                11
## 4022            Manhattan Entire home/apt             30                 1
## 4023            Manhattan    Private room              7                95
## 4024             Brooklyn Entire home/apt              3                 4
## 4025             Brooklyn Entire home/apt              2                10
## 4026             Brooklyn Entire home/apt              2               133
## 4027            Manhattan Entire home/apt             30                 3
## 4028            Manhattan    Private room              3                40
## 4029             Brooklyn    Private room              2                 8
## 4030             Brooklyn    Private room              1               127
## 4031             Brooklyn Entire home/apt              2               205
## 4032            Manhattan Entire home/apt             30                 1
## 4033             Brooklyn Entire home/apt             30                 6
## 4034             Brooklyn Entire home/apt              2               296
## 4035            Manhattan    Private room              7                13
## 4036             Brooklyn    Private room             20                16
## 4037            Manhattan Entire home/apt             30                 2
## 4038             Brooklyn    Private room              1                 6
## 4039            Manhattan Entire home/apt             30                 2
## 4040             Brooklyn Entire home/apt              3               284
## 4041             Brooklyn    Private room              7                 1
## 4042            Manhattan    Private room              2                34
## 4043             Brooklyn    Private room              1                 4
## 4044             Brooklyn Entire home/apt              6                 2
## 4045            Manhattan Entire home/apt              1                 6
## 4046             Brooklyn Entire home/apt             30                43
## 4047             Brooklyn Entire home/apt              3                11
## 4048             Brooklyn    Private room              7                 3
## 4049             Brooklyn Entire home/apt              8                23
## 4050            Manhattan Entire home/apt              2                12
## 4051             Brooklyn Entire home/apt              4                15
## 4052             Brooklyn Entire home/apt              5                 5
## 4053            Manhattan    Private room              2                58
## 4054            Manhattan Entire home/apt              1                11
## 4055            Manhattan    Private room              2                37
## 4056             Brooklyn Entire home/apt              3                 2
## 4057            Manhattan Entire home/apt             30                 2
## 4058            Manhattan Entire home/apt            365                10
## 4059        Staten Island Entire home/apt              3                22
## 4060             Brooklyn Entire home/apt             25                 3
## 4061             Brooklyn Entire home/apt             30                 4
## 4062                Bronx    Private room              1                21
## 4063             Brooklyn Entire home/apt              7                 2
## 4064             Brooklyn     Shared room              1                 7
## 4065               Queens    Private room              2                14
## 4066             Brooklyn    Private room              1                 1
## 4067            Manhattan Entire home/apt              1               150
## 4068            Manhattan Entire home/apt             30                 2
## 4069            Manhattan    Private room              3               139
## 4070             Brooklyn    Private room             14                16
## 4071            Manhattan Entire home/apt             30                 6
## 4072            Manhattan Entire home/apt             30                 6
## 4073             Brooklyn Entire home/apt              4                 3
## 4074            Manhattan Entire home/apt              3                92
## 4075            Manhattan    Private room              1                 2
## 4076            Manhattan Entire home/apt              3                 5
## 4077            Manhattan    Private room             31                 2
## 4078            Manhattan    Private room              2                 9
## 4079            Manhattan Entire home/apt             75                16
## 4080            Manhattan    Private room             30                 1
## 4081             Brooklyn Entire home/apt              2                18
## 4082               Queens    Private room              3               145
## 4083             Brooklyn Entire home/apt             30                 5
## 4084             Brooklyn    Private room             21                10
## 4085            Manhattan Entire home/apt              2                12
## 4086             Brooklyn Entire home/apt              4                43
## 4087            Manhattan Entire home/apt              8                 5
## 4088            Manhattan Entire home/apt              3                 3
## 4089            Manhattan Entire home/apt             30                12
## 4090            Manhattan Entire home/apt             30                 7
## 4091            Manhattan    Private room              3                 5
## 4092             Brooklyn Entire home/apt              3                10
## 4093             Brooklyn    Private room              4                 6
## 4094             Brooklyn Entire home/apt              2                 3
## 4095            Manhattan Entire home/apt              1                32
## 4096            Manhattan Entire home/apt              3               168
## 4097             Brooklyn Entire home/apt             29                 4
## 4098             Brooklyn Entire home/apt              2               190
## 4099            Manhattan Entire home/apt              3                42
## 4100            Manhattan Entire home/apt              1                 1
## 4101            Manhattan Entire home/apt              1                 5
## 4102             Brooklyn Entire home/apt              4                 4
## 4103            Manhattan    Private room              1               257
## 4104             Brooklyn    Private room              1                52
## 4105            Manhattan Entire home/apt             30                 7
## 4106             Brooklyn Entire home/apt             14                 1
## 4107             Brooklyn    Private room              3                85
## 4108             Brooklyn    Private room              6               108
## 4109             Brooklyn Entire home/apt              4                64
## 4110             Brooklyn Entire home/apt             30                38
## 4111             Brooklyn Entire home/apt              2                 2
## 4112             Brooklyn Entire home/apt              2                14
## 4113               Queens Entire home/apt              1                 1
## 4114            Manhattan    Private room            250                91
## 4115            Manhattan Entire home/apt              7               100
## 4116             Brooklyn Entire home/apt              2                 2
## 4117             Brooklyn    Private room              2                15
## 4118            Manhattan    Private room              2                 2
## 4119            Manhattan Entire home/apt              4                 6
## 4120             Brooklyn Entire home/apt              5                 4
## 4121               Queens Entire home/apt              2                 1
## 4122            Manhattan Entire home/apt             28                13
## 4123               Queens    Private room              3                35
## 4124            Manhattan Entire home/apt              2                 8
## 4125            Manhattan    Private room              2                 8
## 4126            Manhattan    Private room              1                 2
## 4127             Brooklyn    Private room              2                 2
## 4128            Manhattan Entire home/apt              2                 6
## 4129            Manhattan     Shared room              1                 8
## 4130             Brooklyn Entire home/apt              7                 4
## 4131            Manhattan Entire home/apt             30                 8
## 4132            Manhattan Entire home/apt              5                22
## 4133             Brooklyn Entire home/apt              2               123
## 4134            Manhattan    Private room              1                25
## 4135             Brooklyn Entire home/apt              2               225
## 4136             Brooklyn Entire home/apt              5                 6
## 4137             Brooklyn Entire home/apt              5                 2
## 4138             Brooklyn    Private room              2               156
## 4139            Manhattan Entire home/apt              5                10
## 4140             Brooklyn    Private room              3                47
## 4141             Brooklyn    Private room              2               182
## 4142            Manhattan    Private room              1                 3
## 4143             Brooklyn Entire home/apt              3                55
## 4144            Manhattan    Private room             14                 2
## 4145             Brooklyn Entire home/apt              2               119
## 4146             Brooklyn    Private room              3                10
## 4147             Brooklyn Entire home/apt              5                60
## 4148             Brooklyn Entire home/apt              1                28
## 4149            Manhattan Entire home/apt              3                 2
## 4150        Staten Island Entire home/apt              3               105
## 4151             Brooklyn Entire home/apt             21                 5
## 4152             Brooklyn Entire home/apt             30                10
## 4153             Brooklyn Entire home/apt              1                 1
## 4154            Manhattan    Private room              1                 4
## 4155             Brooklyn Entire home/apt              7                56
## 4156             Brooklyn Entire home/apt              2                 2
## 4157             Brooklyn Entire home/apt              1                12
## 4158               Queens Entire home/apt              5                22
## 4159             Brooklyn Entire home/apt              3                 6
## 4160             Brooklyn Entire home/apt              5                22
## 4161             Brooklyn Entire home/apt              4                19
## 4162            Manhattan Entire home/apt              2                 1
## 4163            Manhattan Entire home/apt              4                 4
## 4164             Brooklyn Entire home/apt              3                 7
## 4165             Brooklyn    Private room              2                23
## 4166             Brooklyn Entire home/apt              7                20
## 4167             Brooklyn    Private room              3                69
## 4168             Brooklyn    Private room              2                36
## 4169            Manhattan Entire home/apt              3                63
## 4170             Brooklyn    Private room              2                 8
## 4171             Brooklyn Entire home/apt              4                 2
## 4172               Queens Entire home/apt              2               217
## 4173            Manhattan Entire home/apt              3                 6
## 4174             Brooklyn Entire home/apt              3                44
## 4175            Manhattan Entire home/apt              3                 1
## 4176            Manhattan    Private room              3                16
## 4177                Bronx Entire home/apt              3                58
## 4178             Brooklyn Entire home/apt              2                12
## 4179             Brooklyn Entire home/apt              5                28
## 4180             Brooklyn    Private room              3                 4
## 4181                Bronx    Private room              5                35
## 4182             Brooklyn    Private room              3                22
## 4183             Brooklyn Entire home/apt              2                85
## 4184            Manhattan Entire home/apt              2               142
## 4185            Manhattan Entire home/apt              3                 8
## 4186               Queens    Private room              7                 2
## 4187            Manhattan Entire home/apt              4                 1
## 4188             Brooklyn Entire home/apt              5               175
## 4189             Brooklyn    Private room             10                11
## 4190            Manhattan Entire home/apt              3               141
## 4191             Brooklyn Entire home/apt              3                76
## 4192             Brooklyn Entire home/apt             28                12
## 4193             Brooklyn Entire home/apt              1               189
## 4194            Manhattan Entire home/apt              2                17
## 4195             Brooklyn    Private room              1                75
## 4196             Brooklyn Entire home/apt              3                 8
## 4197            Manhattan Entire home/apt              3               214
## 4198            Manhattan    Private room              3               231
## 4199             Brooklyn    Private room              3                 1
## 4200            Manhattan    Private room              5               142
## 4201            Manhattan Entire home/apt              2               119
## 4202            Manhattan    Private room              7                17
## 4203            Manhattan Entire home/apt              1                 3
## 4204            Manhattan    Private room              3                 9
## 4205            Manhattan     Shared room              2               136
## 4206            Manhattan    Private room              3                37
## 4207             Brooklyn Entire home/apt              2               122
## 4208            Manhattan    Private room              2                10
## 4209            Manhattan     Shared room              2                 9
## 4210            Manhattan    Private room              6                 3
## 4211             Brooklyn Entire home/apt              2               172
## 4212            Manhattan    Private room              4                 3
## 4213             Brooklyn Entire home/apt              3                 8
## 4214             Brooklyn Entire home/apt              7                 6
## 4215             Brooklyn    Private room              1                47
## 4216             Brooklyn Entire home/apt              1               115
## 4217             Brooklyn Entire home/apt              6                34
## 4218             Brooklyn Entire home/apt              5                 3
## 4219             Brooklyn Entire home/apt              2                45
## 4220             Brooklyn Entire home/apt              3                12
## 4221            Manhattan Entire home/apt              2                31
## 4222            Manhattan    Private room              7                17
## 4223             Brooklyn Entire home/apt             30                 2
## 4224             Brooklyn Entire home/apt              6                 5
## 4225            Manhattan Entire home/apt              1                 2
## 4226             Brooklyn    Private room             14                26
## 4227             Brooklyn Entire home/apt              2                10
## 4228            Manhattan    Private room              2                15
## 4229            Manhattan    Private room              3                13
## 4230            Manhattan    Private room              2                 7
## 4231            Manhattan Entire home/apt              4               102
## 4232             Brooklyn Entire home/apt              1                 2
## 4233            Manhattan    Private room              1               134
## 4234             Brooklyn Entire home/apt              1               154
## 4235            Manhattan Entire home/apt              5                13
## 4236             Brooklyn    Private room              2               152
## 4237             Brooklyn Entire home/apt              7                 5
## 4238            Manhattan Entire home/apt              2                 1
## 4239             Brooklyn Entire home/apt             30                 1
## 4240            Manhattan    Private room              2                 6
## 4241            Manhattan Entire home/apt              4                 5
## 4242            Manhattan    Private room              5                 2
## 4243            Manhattan Entire home/apt              1                18
## 4244             Brooklyn    Private room              3                73
## 4245            Manhattan Entire home/apt              2                21
## 4246             Brooklyn Entire home/apt              1                32
## 4247            Manhattan Entire home/apt              5                49
## 4248             Brooklyn Entire home/apt              1                 5
## 4249            Manhattan    Private room              3               118
## 4250            Manhattan Entire home/apt              3                18
## 4251             Brooklyn Entire home/apt              3                 2
## 4252             Brooklyn    Private room              7                11
## 4253            Manhattan    Private room              3                 2
## 4254               Queens    Private room              2                40
## 4255             Brooklyn Entire home/apt              4                22
## 4256            Manhattan Entire home/apt              4                48
## 4257             Brooklyn Entire home/apt              2                52
## 4258             Brooklyn Entire home/apt             30                14
## 4259            Manhattan Entire home/apt              4                14
## 4260             Brooklyn    Private room             28                13
## 4261            Manhattan Entire home/apt              4                 6
## 4262             Brooklyn Entire home/apt              3                13
## 4263             Brooklyn Entire home/apt              3                16
## 4264            Manhattan Entire home/apt              7                14
## 4265             Brooklyn Entire home/apt              3                18
## 4266            Manhattan Entire home/apt              3                12
## 4267             Brooklyn Entire home/apt              5                 5
## 4268            Manhattan Entire home/apt             14                18
## 4269            Manhattan Entire home/apt              4                11
## 4270             Brooklyn    Private room              5                 6
## 4271            Manhattan    Private room              1                 3
## 4272             Brooklyn    Private room             30                 4
## 4273            Manhattan Entire home/apt              3               159
## 4274            Manhattan    Private room              2                14
## 4275            Manhattan Entire home/apt             60                 1
## 4276             Brooklyn Entire home/apt              3                12
## 4277             Brooklyn Entire home/apt              5                51
## 4278             Brooklyn Entire home/apt              2               124
## 4279            Manhattan Entire home/apt              4                 7
## 4280               Queens    Private room              3                25
## 4281             Brooklyn    Private room              1               173
## 4282            Manhattan Entire home/apt             30                 8
## 4283            Manhattan Entire home/apt              3                30
## 4284             Brooklyn    Private room             30                 5
## 4285             Brooklyn Entire home/apt              3                89
## 4286             Brooklyn Entire home/apt             12                 8
## 4287             Brooklyn Entire home/apt             30                36
## 4288            Manhattan Entire home/apt              5                30
## 4289            Manhattan Entire home/apt              3                 3
## 4290            Manhattan Entire home/apt              2               138
## 4291             Brooklyn Entire home/apt              2               148
## 4292             Brooklyn Entire home/apt              5               120
## 4293            Manhattan Entire home/apt              4               115
## 4294            Manhattan    Private room              3                64
## 4295            Manhattan Entire home/apt              1                22
## 4296             Brooklyn    Private room              3                52
## 4297             Brooklyn Entire home/apt              2                55
## 4298             Brooklyn    Private room             20                62
## 4299               Queens    Private room              1               142
## 4300             Brooklyn Entire home/apt             30                81
## 4301                Bronx Entire home/apt              2                85
## 4302             Brooklyn    Private room              3                86
## 4303            Manhattan Entire home/apt              1                 4
## 4304            Manhattan    Private room              1                 2
## 4305             Brooklyn    Private room              2                25
## 4306             Brooklyn Entire home/apt              7                 4
## 4307             Brooklyn Entire home/apt              4                10
## 4308             Brooklyn Entire home/apt             18                11
## 4309            Manhattan Entire home/apt              2                85
## 4310               Queens Entire home/apt              3               160
## 4311               Queens    Private room             30                 9
## 4312            Manhattan Entire home/apt              4                 2
## 4313               Queens Entire home/apt              2               216
## 4314            Manhattan Entire home/apt              7                 6
## 4315            Manhattan    Private room              1               146
## 4316             Brooklyn Entire home/apt              4                14
## 4317            Manhattan Entire home/apt              3                 1
## 4318             Brooklyn Entire home/apt              5               192
## 4319            Manhattan Entire home/apt             29                 5
## 4320            Manhattan Entire home/apt              4                11
## 4321            Manhattan Entire home/apt            110                12
## 4322            Manhattan Entire home/apt             30                13
## 4323             Brooklyn    Private room              1                 3
## 4324            Manhattan Entire home/apt              1                 8
## 4325            Manhattan Entire home/apt              2                 4
## 4326             Brooklyn Entire home/apt             30                 4
## 4327            Manhattan    Private room              2                55
## 4328            Manhattan Entire home/apt             10                 1
## 4329             Brooklyn    Private room              2                55
## 4330             Brooklyn Entire home/apt              5                37
## 4331             Brooklyn    Private room              4                37
## 4332            Manhattan    Private room              1                 1
## 4333             Brooklyn Entire home/apt              2                 4
## 4334             Brooklyn Entire home/apt              5                 8
## 4335             Brooklyn    Private room              2                 1
## 4336             Brooklyn Entire home/apt              1                 4
## 4337             Brooklyn Entire home/apt              5                 9
## 4338            Manhattan Entire home/apt              5                49
## 4339            Manhattan Entire home/apt              3                11
## 4340            Manhattan    Private room             10                 3
## 4341             Brooklyn Entire home/apt             30                15
## 4342            Manhattan Entire home/apt              7                 4
## 4343            Manhattan Entire home/apt              5                18
## 4344             Brooklyn Entire home/apt              4                17
## 4345             Brooklyn Entire home/apt              3                29
## 4346             Brooklyn Entire home/apt              3               176
## 4347               Queens Entire home/apt              3                33
## 4348            Manhattan Entire home/apt              1                 1
## 4349             Brooklyn    Private room              3                 6
## 4350             Brooklyn Entire home/apt              5                82
## 4351             Brooklyn Entire home/apt              5                 1
## 4352            Manhattan Entire home/apt              1                60
## 4353             Brooklyn Entire home/apt              2               257
## 4354            Manhattan    Private room              7                 5
## 4355             Brooklyn    Private room              4                14
## 4356             Brooklyn Entire home/apt              3               153
## 4357               Queens Entire home/apt             10                10
## 4358            Manhattan Entire home/apt              2                25
## 4359             Brooklyn Entire home/apt              1                89
## 4360             Brooklyn Entire home/apt              4                26
## 4361             Brooklyn    Private room              2                10
## 4362            Manhattan Entire home/apt             30                 3
## 4363             Brooklyn Entire home/apt              5                 3
## 4364            Manhattan Entire home/apt              3                 6
## 4365            Manhattan    Private room              3                18
## 4366             Brooklyn Entire home/apt             30                77
## 4367            Manhattan    Private room              2                60
## 4368            Manhattan    Private room              5                21
## 4369            Manhattan    Private room              5                24
## 4370            Manhattan    Private room              6                20
## 4371            Manhattan    Private room              3                10
## 4372            Manhattan Entire home/apt              7                 1
## 4373                Bronx    Private room              2               114
## 4374             Brooklyn Entire home/apt              3                 6
## 4375             Brooklyn    Private room             21                60
## 4376             Brooklyn Entire home/apt              7                25
## 4377            Manhattan Entire home/apt              3               225
## 4378            Manhattan Entire home/apt              2                 8
## 4379            Manhattan Entire home/apt             30                36
## 4380             Brooklyn    Private room              3               225
## 4381             Brooklyn    Private room              2               118
## 4382            Manhattan    Private room              4                48
## 4383            Manhattan Entire home/apt              5                19
## 4384             Brooklyn Entire home/apt              1                 7
## 4385            Manhattan Entire home/apt              7                90
## 4386             Brooklyn    Private room              1                83
## 4387             Brooklyn Entire home/apt              2                 1
## 4388            Manhattan Entire home/apt             11                50
## 4389               Queens Entire home/apt              2                 7
## 4390             Brooklyn Entire home/apt              3                25
## 4391             Brooklyn Entire home/apt              2                87
## 4392             Brooklyn Entire home/apt              2                48
## 4393               Queens    Private room              2                33
## 4394             Brooklyn Entire home/apt              1                21
## 4395            Manhattan Entire home/apt              3                16
## 4396            Manhattan Entire home/apt              5                 9
## 4397               Queens    Private room              3                 1
## 4398             Brooklyn Entire home/apt              1                 1
## 4399             Brooklyn Entire home/apt              5                10
## 4400            Manhattan Entire home/apt             30                 7
## 4401            Manhattan Entire home/apt              3                 9
## 4402                Bronx    Private room              2                75
## 4403             Brooklyn Entire home/apt              3                12
## 4404                Bronx    Private room              1               231
## 4405             Brooklyn Entire home/apt              4                 3
## 4406             Brooklyn Entire home/apt              3                 1
## 4407            Manhattan Entire home/apt              7                 6
## 4408            Manhattan Entire home/apt              2                 4
## 4409            Manhattan Entire home/apt              4                 4
## 4410             Brooklyn    Private room             10                 1
## 4411            Manhattan    Private room              1                21
## 4412            Manhattan    Private room              7                11
## 4413            Manhattan Entire home/apt              1                39
## 4414            Manhattan Entire home/apt              3                 5
## 4415             Brooklyn    Private room              7                16
## 4416            Manhattan Entire home/apt              2                 1
## 4417             Brooklyn    Private room             15                 4
## 4418             Brooklyn Entire home/apt              3                 2
## 4419             Brooklyn Entire home/apt              3                15
## 4420             Brooklyn Entire home/apt              5                11
## 4421            Manhattan Entire home/apt              1               107
## 4422             Brooklyn Entire home/apt              5                 7
## 4423             Brooklyn Entire home/apt              2                45
## 4424            Manhattan Entire home/apt              1                 1
## 4425            Manhattan Entire home/apt              3                64
## 4426            Manhattan    Private room              1                 3
## 4427            Manhattan Entire home/apt              1                 7
## 4428            Manhattan    Private room              1               202
## 4429            Manhattan Entire home/apt              1               285
## 4430             Brooklyn Entire home/apt              3                 6
## 4431        Staten Island    Private room              1               145
## 4432            Manhattan Entire home/apt             15                15
## 4433            Manhattan Entire home/apt              7                 1
## 4434            Manhattan Entire home/apt             30                 6
## 4435            Manhattan Entire home/apt             30                11
## 4436             Brooklyn Entire home/apt              2                19
## 4437             Brooklyn Entire home/apt              1               169
## 4438            Manhattan Entire home/apt              4                58
## 4439             Brooklyn Entire home/apt              3                15
## 4440             Brooklyn Entire home/apt              1               488
## 4441             Brooklyn Entire home/apt              4               142
## 4442             Brooklyn Entire home/apt              3                39
## 4443            Manhattan    Private room              2                36
## 4444             Brooklyn Entire home/apt              3                 4
## 4445            Manhattan Entire home/apt              5                72
## 4446             Brooklyn Entire home/apt              1                51
## 4447            Manhattan Entire home/apt              1                 1
## 4448             Brooklyn Entire home/apt              2               214
## 4449             Brooklyn Entire home/apt              3                 4
## 4450            Manhattan Entire home/apt              3                 3
## 4451               Queens    Private room             30                 8
## 4452             Brooklyn Entire home/apt              2               231
## 4453            Manhattan Entire home/apt              3                91
## 4454             Brooklyn Entire home/apt              5                19
## 4455             Brooklyn Entire home/apt              2               133
## 4456            Manhattan    Private room              1               145
## 4457            Manhattan Entire home/apt              1                 1
## 4458               Queens    Private room              2                 2
## 4459            Manhattan Entire home/apt              4                 8
## 4460            Manhattan Entire home/apt              3                25
## 4461             Brooklyn    Private room              6                17
## 4462            Manhattan    Private room              1                 2
## 4463                Bronx    Private room              2                11
## 4464             Brooklyn    Private room              3                 5
## 4465             Brooklyn Entire home/apt              5                 7
## 4466            Manhattan Entire home/apt             30                12
## 4467             Brooklyn Entire home/apt              2                10
## 4468             Brooklyn Entire home/apt             20                 5
## 4469            Manhattan    Private room              2               127
## 4470             Brooklyn Entire home/apt              5                53
## 4471             Brooklyn    Private room              3               230
## 4472             Brooklyn Entire home/apt              1                 5
## 4473             Brooklyn    Private room              3                76
## 4474            Manhattan Entire home/apt             30                 4
## 4475             Brooklyn Entire home/apt              5                 3
## 4476            Manhattan    Private room              2                50
## 4477             Brooklyn Entire home/apt              3                20
## 4478            Manhattan Entire home/apt              1                18
## 4479             Brooklyn    Private room              1                52
## 4480            Manhattan Entire home/apt              1                48
## 4481            Manhattan Entire home/apt              4                17
## 4482            Manhattan Entire home/apt              4                45
## 4483            Manhattan Entire home/apt              3                44
## 4484             Brooklyn Entire home/apt              5                52
## 4485             Brooklyn    Private room              4                70
## 4486             Brooklyn Entire home/apt              3                10
## 4487            Manhattan Entire home/apt              5                76
## 4488            Manhattan Entire home/apt              2                 5
## 4489            Manhattan Entire home/apt              3                73
## 4490             Brooklyn Entire home/apt              1               142
## 4491            Manhattan Entire home/apt              4                85
## 4492            Manhattan    Private room              2                28
## 4493            Manhattan    Private room              1                 2
## 4494             Brooklyn Entire home/apt              3                49
## 4495             Brooklyn    Private room              1               332
## 4496            Manhattan     Shared room              1                47
## 4497            Manhattan    Private room              2               249
## 4498             Brooklyn    Private room              2                67
## 4499            Manhattan Entire home/apt              2               121
## 4500            Manhattan Entire home/apt              1                 9
## 4501            Manhattan Entire home/apt              5                12
## 4502            Manhattan    Private room              1               191
## 4503            Manhattan Entire home/apt              1               358
## 4504             Brooklyn Entire home/apt              1               138
## 4505            Manhattan    Private room              3               160
## 4506             Brooklyn Entire home/apt              4                 9
## 4507             Brooklyn    Private room              2               180
## 4508             Brooklyn    Private room              1                 1
## 4509             Brooklyn Entire home/apt              3                37
## 4510            Manhattan    Private room              5                 3
## 4511            Manhattan    Private room              3                16
## 4512             Brooklyn    Private room              3                 2
## 4513             Brooklyn Entire home/apt              4                38
## 4514             Brooklyn Entire home/apt              2               175
## 4515            Manhattan    Private room              5                 5
## 4516            Manhattan     Shared room              1                31
## 4517             Brooklyn Entire home/apt             30                 4
## 4518             Brooklyn Entire home/apt              3                19
## 4519             Brooklyn Entire home/apt              1                14
## 4520            Manhattan    Private room             60                 9
## 4521            Manhattan Entire home/apt              5                64
## 4522             Brooklyn Entire home/apt              5                 7
## 4523             Brooklyn    Private room              4                37
## 4524            Manhattan Entire home/apt            180                 7
## 4525            Manhattan    Private room              2                62
## 4526            Manhattan Entire home/apt              2                 9
## 4527            Manhattan Entire home/apt              5                 8
## 4528            Manhattan Entire home/apt              2                62
## 4529             Brooklyn    Private room              1                83
## 4530            Manhattan Entire home/apt              7                 9
## 4531            Manhattan Entire home/apt              4                60
## 4532            Manhattan    Private room              1                 3
## 4533             Brooklyn Entire home/apt              2                 7
## 4534            Manhattan    Private room             30                 2
## 4535            Manhattan    Private room             14                 1
## 4536             Brooklyn    Private room             14                 8
## 4537            Manhattan Entire home/apt              4                50
## 4538             Brooklyn Entire home/apt              4                25
## 4539            Manhattan Entire home/apt              1                29
## 4540            Manhattan Entire home/apt              1                 5
## 4541             Brooklyn Entire home/apt              2                60
## 4542             Brooklyn    Private room              2                 8
## 4543             Brooklyn Entire home/apt              1               157
## 4544             Brooklyn Entire home/apt              1                 2
## 4545            Manhattan Entire home/apt              2               292
## 4546            Manhattan Entire home/apt              3                18
## 4547             Brooklyn    Private room             30                77
## 4548            Manhattan Entire home/apt              7                16
## 4549             Brooklyn    Private room              1                12
## 4550            Manhattan    Private room              6                13
## 4551             Brooklyn    Private room             30                 1
## 4552               Queens    Private room              2                 2
## 4553               Queens Entire home/apt              2                81
## 4554             Brooklyn Entire home/apt              3                15
## 4555             Brooklyn Entire home/apt              2               180
## 4556            Manhattan Entire home/apt             30                 9
## 4557            Manhattan Entire home/apt              2                 5
## 4558             Brooklyn Entire home/apt              5               150
## 4559             Brooklyn    Private room              3               192
## 4560            Manhattan    Private room              1                14
## 4561            Manhattan    Private room              6                61
## 4562            Manhattan    Private room              7                17
## 4563            Manhattan Entire home/apt              2                24
## 4564            Manhattan    Private room              6                 3
## 4565             Brooklyn Entire home/apt              3                15
## 4566             Brooklyn Entire home/apt              2                51
## 4567             Brooklyn Entire home/apt              2                56
## 4568               Queens Entire home/apt              3                29
## 4569            Manhattan Entire home/apt              3               116
## 4570            Manhattan    Private room              9                26
## 4571             Brooklyn    Private room              3                33
## 4572               Queens Entire home/apt              3               146
## 4573             Brooklyn    Private room              1                13
## 4574            Manhattan    Private room              4               147
## 4575            Manhattan Entire home/apt              3                24
## 4576            Manhattan    Private room              7                45
## 4577            Manhattan    Private room              2                13
## 4578             Brooklyn    Private room              2                13
## 4579               Queens Entire home/apt              2                 5
## 4580            Manhattan Entire home/apt              7                 6
## 4581             Brooklyn Entire home/apt              2               103
## 4582             Brooklyn    Private room             21                88
## 4583            Manhattan    Private room              1                14
## 4584             Brooklyn    Private room              2               122
## 4585             Brooklyn    Private room              1                 4
## 4586            Manhattan    Private room             30                 2
## 4587             Brooklyn Entire home/apt             10                26
## 4588             Brooklyn Entire home/apt              4                 6
## 4589            Manhattan    Private room             21                 3
## 4590            Manhattan    Private room             21                 2
## 4591               Queens Entire home/apt              6                25
## 4592             Brooklyn    Private room              2                11
## 4593               Queens    Private room              4                 2
## 4594            Manhattan Entire home/apt              3                 8
## 4595             Brooklyn    Private room             30                14
## 4596             Brooklyn    Private room              3                47
## 4597               Queens    Private room              1               173
## 4598            Manhattan Entire home/apt             30                 3
## 4599            Manhattan Entire home/apt             30                11
## 4600               Queens Entire home/apt             30                 8
## 4601            Manhattan Entire home/apt              5                40
## 4602                Bronx    Private room              1                 3
## 4603             Brooklyn    Private room              6                81
## 4604             Brooklyn Entire home/apt              3                12
## 4605                Bronx Entire home/apt              6                11
## 4606               Queens Entire home/apt              1                30
## 4607             Brooklyn Entire home/apt              2                41
## 4608            Manhattan Entire home/apt              7                 3
## 4609            Manhattan    Private room              1                 3
## 4610               Queens    Private room              1                57
## 4611               Queens Entire home/apt             30                10
## 4612            Manhattan    Private room              1                13
## 4613             Brooklyn Entire home/apt              5                28
## 4614             Brooklyn Entire home/apt              3               117
## 4615            Manhattan Entire home/apt              3                 1
## 4616            Manhattan Entire home/apt             75                13
## 4617             Brooklyn Entire home/apt             30                 3
## 4618             Brooklyn    Private room              4                18
## 4619             Brooklyn Entire home/apt              1                26
## 4620            Manhattan    Private room              5                12
## 4621             Brooklyn Entire home/apt              2                25
## 4622             Brooklyn Entire home/apt              3                 4
## 4623             Brooklyn Entire home/apt              7                 3
## 4624             Brooklyn Entire home/apt              3                24
## 4625             Brooklyn    Private room              2                56
## 4626             Brooklyn Entire home/apt              3                36
## 4627               Queens    Private room              1                31
## 4628             Brooklyn Entire home/apt              3                 2
## 4629            Manhattan Entire home/apt             30                15
## 4630             Brooklyn    Private room              2                 6
## 4631             Brooklyn    Private room              1                35
## 4632            Manhattan Entire home/apt             30                 2
## 4633            Manhattan Entire home/apt             30                 3
## 4634               Queens    Private room              2                36
## 4635            Manhattan Entire home/apt             30                10
## 4636            Manhattan    Private room             11                14
## 4637            Manhattan Entire home/apt              5                 2
## 4638                Bronx    Private room              7                12
## 4639             Brooklyn Entire home/apt             30                99
## 4640            Manhattan    Private room              3               168
## 4641             Brooklyn    Private room              5                 1
## 4642             Brooklyn    Private room              5                 2
## 4643            Manhattan Entire home/apt             30                 2
## 4644             Brooklyn    Private room              2                26
## 4645            Manhattan Entire home/apt              3                51
## 4646            Manhattan Entire home/apt              2                 6
## 4647             Brooklyn Entire home/apt              1               233
## 4648             Brooklyn    Private room              2                43
## 4649            Manhattan Entire home/apt             30                 4
## 4650            Manhattan    Private room              3                67
## 4651             Brooklyn Entire home/apt              3                34
## 4652             Brooklyn Entire home/apt              4               137
## 4653            Manhattan Entire home/apt              3                 9
## 4654             Brooklyn Entire home/apt             30                 9
## 4655               Queens    Private room              2                 3
## 4656             Brooklyn    Private room              5                18
## 4657             Brooklyn    Private room              2               145
## 4658             Brooklyn Entire home/apt             14                15
## 4659               Queens    Private room              2               111
## 4660            Manhattan Entire home/apt              2                13
## 4661             Brooklyn    Private room              4                27
## 4662             Brooklyn Entire home/apt              2               216
## 4663             Brooklyn Entire home/apt              2                 6
## 4664            Manhattan    Private room              2               277
## 4665             Brooklyn Entire home/apt              4                 2
## 4666             Brooklyn    Private room              2                20
## 4667             Brooklyn Entire home/apt              7                46
## 4668             Brooklyn Entire home/apt              5                 7
## 4669             Brooklyn Entire home/apt              2               116
## 4670            Manhattan Entire home/apt              4                22
## 4671            Manhattan Entire home/apt              1                20
## 4672             Brooklyn    Private room              2                 3
## 4673             Brooklyn Entire home/apt              2               120
## 4674             Brooklyn Entire home/apt              1                10
## 4675            Manhattan Entire home/apt              2               207
## 4676             Brooklyn Entire home/apt              3                20
## 4677             Brooklyn    Private room              1                 2
## 4678             Brooklyn Entire home/apt              3                 6
## 4679             Brooklyn Entire home/apt              3                 6
## 4680             Brooklyn Entire home/apt              5                 4
## 4681             Brooklyn Entire home/apt              1               135
## 4682            Manhattan Entire home/apt              3                72
## 4683            Manhattan    Private room              4                48
## 4684            Manhattan    Private room              3                61
## 4685            Manhattan    Private room              3                60
## 4686             Brooklyn    Private room              1                 6
## 4687            Manhattan Entire home/apt              8                48
## 4688             Brooklyn    Private room             60                 2
## 4689            Manhattan Entire home/apt              7                 5
## 4690             Brooklyn    Private room              1                 6
## 4691            Manhattan Entire home/apt             30                 7
## 4692             Brooklyn    Private room              5                27
## 4693             Brooklyn Entire home/apt              1               121
## 4694             Brooklyn Entire home/apt              3                10
## 4695            Manhattan    Private room              2                 6
## 4696             Brooklyn Entire home/apt              2                18
## 4697             Brooklyn Entire home/apt              3               118
## 4698               Queens Entire home/apt              3                70
## 4699               Queens     Shared room              2                38
## 4700            Manhattan    Private room              1               204
## 4701            Manhattan Entire home/apt              2               179
## 4702             Brooklyn Entire home/apt              3               168
## 4703             Brooklyn Entire home/apt              7                 2
## 4704             Brooklyn    Private room              1                 2
## 4705             Brooklyn Entire home/apt              2                 5
## 4706             Brooklyn Entire home/apt              3                 1
## 4707            Manhattan Entire home/apt             30                 1
## 4708             Brooklyn Entire home/apt              1                 9
## 4709               Queens    Private room              1                 2
## 4710             Brooklyn    Private room              5                 8
## 4711             Brooklyn Entire home/apt             30                 6
## 4712             Brooklyn    Private room              1                 1
## 4713             Brooklyn    Private room              5                12
## 4714             Brooklyn Entire home/apt              2                 1
## 4715             Brooklyn    Private room              2                41
## 4716             Brooklyn    Private room              5                 2
## 4717             Brooklyn Entire home/apt              1                 7
## 4718             Brooklyn Entire home/apt             30                21
## 4719            Manhattan Entire home/apt             30                 9
## 4720            Manhattan    Private room              3               133
## 4721            Manhattan    Private room              3                56
## 4722            Manhattan Entire home/apt              1                 3
## 4723             Brooklyn Entire home/apt              8                17
## 4724             Brooklyn Entire home/apt              5               105
## 4725            Manhattan    Private room              3                55
## 4726            Manhattan Entire home/apt              3                10
## 4727        Staten Island    Private room              3                93
## 4728               Queens    Private room              5                 3
## 4729             Brooklyn Entire home/apt              5                10
## 4730             Brooklyn    Private room              1                 9
## 4731            Manhattan    Private room              7                47
## 4732             Brooklyn    Private room              1                78
## 4733            Manhattan Entire home/apt             30                10
## 4734             Brooklyn    Private room              2                 1
## 4735             Brooklyn Entire home/apt              3                72
## 4736            Manhattan Entire home/apt              3                 8
## 4737            Manhattan Entire home/apt              7                16
## 4738            Manhattan    Private room              2               177
## 4739            Manhattan    Private room              5                25
## 4740             Brooklyn Entire home/apt              1                82
## 4741            Manhattan Entire home/apt              1                68
## 4742               Queens Entire home/apt              2               141
## 4743             Brooklyn Entire home/apt              3                39
## 4744            Manhattan    Private room             30                54
## 4745             Brooklyn    Private room              1                16
## 4746            Manhattan Entire home/apt             24                 2
## 4747             Brooklyn Entire home/apt              4                46
## 4748             Brooklyn    Private room             10                 9
## 4749            Manhattan Entire home/apt             13                 3
## 4750            Manhattan    Private room              2                79
## 4751            Manhattan Entire home/apt              3                72
## 4752             Brooklyn Entire home/apt              2               234
## 4753            Manhattan    Private room              2                52
## 4754             Brooklyn Entire home/apt              7                 5
## 4755               Queens Entire home/apt              3               116
## 4756                Bronx    Private room              3                59
## 4757            Manhattan    Private room              1               389
## 4758            Manhattan    Private room              1                64
## 4759            Manhattan    Private room              1                 9
## 4760             Brooklyn Entire home/apt              3               173
## 4761             Brooklyn Entire home/apt              2                21
## 4762            Manhattan    Private room              3                10
## 4763             Brooklyn    Private room              1                 8
## 4764             Brooklyn Entire home/apt              3               135
## 4765            Manhattan Entire home/apt              3                80
## 4766             Brooklyn Entire home/apt              1                40
## 4767             Brooklyn    Private room              2                82
## 4768            Manhattan     Shared room              1                16
## 4769            Manhattan Entire home/apt              2                 1
## 4770            Manhattan    Private room              1                20
## 4771             Brooklyn Entire home/apt              5                85
## 4772            Manhattan Entire home/apt             30                16
## 4773            Manhattan Entire home/apt             30                14
## 4774             Brooklyn Entire home/apt             30                 5
## 4775             Brooklyn Entire home/apt              1                 2
## 4776                Bronx    Private room              1               276
## 4777            Manhattan    Private room              3               154
## 4778            Manhattan Entire home/apt             30                12
## 4779             Brooklyn Entire home/apt              7                15
## 4780            Manhattan    Private room              1                13
## 4781               Queens    Private room              2                77
## 4782               Queens    Private room             30                 9
## 4783            Manhattan Entire home/apt              3                78
## 4784             Brooklyn Entire home/apt             30                12
## 4785            Manhattan Entire home/apt              4                17
## 4786             Brooklyn    Private room              3                 1
## 4787             Brooklyn Entire home/apt              3                 4
## 4788             Brooklyn    Private room              1               372
## 4789            Manhattan Entire home/apt              1               299
## 4790             Brooklyn Entire home/apt             25                 4
## 4791             Brooklyn Entire home/apt              3                96
## 4792             Brooklyn Entire home/apt             21                 1
## 4793               Queens Entire home/apt              3                11
## 4794            Manhattan Entire home/apt              2                31
## 4795                Bronx    Private room              1               321
## 4796            Manhattan    Private room              1               147
## 4797            Manhattan Entire home/apt             60                 4
## 4798            Manhattan Entire home/apt             30                 9
## 4799             Brooklyn Entire home/apt              2               252
## 4800             Brooklyn    Private room              2               206
## 4801            Manhattan    Private room              3               164
## 4802               Queens    Private room             14                 1
## 4803            Manhattan Entire home/apt             30                 6
## 4804             Brooklyn    Private room              1                52
## 4805             Brooklyn Entire home/apt              3               203
## 4806            Manhattan Entire home/apt             30                10
## 4807               Queens    Private room              2               128
## 4808               Queens    Private room              2                75
## 4809             Brooklyn    Private room              2                 2
## 4810            Manhattan Entire home/apt             30                 7
## 4811               Queens    Private room              5                 6
## 4812            Manhattan Entire home/apt             30                11
## 4813            Manhattan    Private room             30                 2
## 4814            Manhattan Entire home/apt             30                 7
## 4815            Manhattan Entire home/apt              1                23
## 4816            Manhattan Entire home/apt              3                70
## 4817            Manhattan Entire home/apt              2                 2
## 4818            Manhattan Entire home/apt             30                 4
## 4819             Brooklyn    Private room              1                52
## 4820            Manhattan Entire home/apt              4                 7
## 4821            Manhattan Entire home/apt              5                 5
## 4822               Queens    Private room             30                 9
## 4823             Brooklyn Entire home/apt              4               138
## 4824               Queens    Private room              1                39
## 4825            Manhattan Entire home/apt              1                10
## 4826            Manhattan Entire home/apt              4                10
## 4827             Brooklyn    Private room              3                41
## 4828             Brooklyn Entire home/apt              5                14
## 4829             Brooklyn    Private room             30                25
## 4830             Brooklyn Entire home/apt              3                 2
## 4831            Manhattan Entire home/apt              4                21
## 4832             Brooklyn     Shared room              2                 7
## 4833             Brooklyn Entire home/apt              3                 2
## 4834            Manhattan    Private room             25                70
## 4835             Brooklyn    Private room              3                23
## 4836               Queens    Private room              1               164
## 4837             Brooklyn    Private room              2                36
## 4838               Queens    Private room              1               207
## 4839             Brooklyn    Private room              2                43
## 4840            Manhattan Entire home/apt              3                 5
## 4841               Queens Entire home/apt              3               102
## 4842            Manhattan Entire home/apt              2                80
## 4843             Brooklyn Entire home/apt              4                 3
## 4844                Bronx Entire home/apt             14                 3
## 4845             Brooklyn Entire home/apt              4                17
## 4846             Brooklyn Entire home/apt             10                16
## 4847             Brooklyn Entire home/apt              2                25
## 4848             Brooklyn Entire home/apt              5                18
## 4849             Brooklyn Entire home/apt              3                68
## 4850             Brooklyn Entire home/apt              1                 1
## 4851            Manhattan Entire home/apt              1                 8
## 4852            Manhattan    Private room              5                18
## 4853             Brooklyn Entire home/apt              2                13
## 4854             Brooklyn    Private room              3                39
## 4855            Manhattan Entire home/apt              5                 1
## 4856            Manhattan Entire home/apt             25                 6
## 4857            Manhattan    Private room              1                55
## 4858            Manhattan Entire home/apt             30                 2
## 4859             Brooklyn    Private room             10                20
## 4860             Brooklyn Entire home/apt              3               108
## 4861             Brooklyn Entire home/apt              2                11
## 4862            Manhattan    Private room             30                12
## 4863            Manhattan Entire home/apt              5                 7
## 4864            Manhattan Entire home/apt              4                26
## 4865             Brooklyn Entire home/apt              2                59
## 4866               Queens    Private room              1                91
## 4867             Brooklyn Entire home/apt              3                15
## 4868             Brooklyn    Private room              5                11
## 4869            Manhattan    Private room              3               104
## 4870             Brooklyn Entire home/apt              8                 1
## 4871            Manhattan Entire home/apt              3                45
## 4872             Brooklyn Entire home/apt              3                 8
## 4873             Brooklyn    Private room              5                 3
## 4874            Manhattan Entire home/apt              4                39
## 4875            Manhattan Entire home/apt              3               233
## 4876            Manhattan Entire home/apt             30                 5
## 4877            Manhattan Entire home/apt             30                13
## 4878             Brooklyn    Private room              4                 3
## 4879            Manhattan Entire home/apt             30                 2
## 4880            Manhattan Entire home/apt              2                16
## 4881             Brooklyn Entire home/apt              5                51
## 4882             Brooklyn Entire home/apt              1                42
## 4883             Brooklyn Entire home/apt              2               254
## 4884            Manhattan Entire home/apt              4                17
## 4885            Manhattan Entire home/apt              4                28
## 4886               Queens    Private room              1                 4
## 4887             Brooklyn Entire home/apt              5                53
## 4888            Manhattan Entire home/apt              6                19
## 4889             Brooklyn    Private room              1                 5
## 4890            Manhattan    Private room              1                 6
## 4891            Manhattan Entire home/apt              2                21
## 4892            Manhattan Entire home/apt              2                12
## 4893            Manhattan Entire home/apt             30                 4
## 4894            Manhattan    Private room              4                27
## 4895             Brooklyn Entire home/apt              5                45
## 4896             Brooklyn Entire home/apt              2                 7
## 4897            Manhattan    Private room              1               297
## 4898               Queens    Private room              2                 2
## 4899             Brooklyn Entire home/apt              7                 2
## 4900                Bronx    Private room              3                 2
## 4901            Manhattan Entire home/apt              1               401
## 4902            Manhattan Entire home/apt              5                 1
## 4903             Brooklyn    Private room             30                 7
## 4904            Manhattan    Private room            365                13
## 4905            Manhattan Entire home/apt              4                 3
## 4906        Staten Island Entire home/apt              2               242
## 4907             Brooklyn    Private room              7                 1
## 4908             Brooklyn    Private room              4                 4
## 4909             Brooklyn Entire home/apt             28                45
## 4910            Manhattan Entire home/apt              4                 1
## 4911            Manhattan    Private room              4                32
## 4912             Brooklyn    Private room              2               117
## 4913             Brooklyn    Private room              3                 4
## 4914            Manhattan Entire home/apt              2                 6
## 4915             Brooklyn Entire home/apt             29                 7
## 4916            Manhattan Entire home/apt              5                 5
## 4917            Manhattan Entire home/apt              3                15
## 4918             Brooklyn    Private room              1                10
## 4919            Manhattan Entire home/apt             10                51
## 4920             Brooklyn    Private room              1                73
## 4921             Brooklyn    Private room              3               174
## 4922             Brooklyn    Private room              5                 5
## 4923             Brooklyn    Private room              2                99
## 4924            Manhattan Entire home/apt              2                 7
## 4925            Manhattan     Shared room              1                 6
## 4926             Brooklyn    Private room              1                74
## 4927             Brooklyn    Private room              3                14
## 4928            Manhattan    Private room              2                 5
## 4929            Manhattan Entire home/apt              2               101
## 4930             Brooklyn    Private room             30                12
## 4931            Manhattan    Private room              3                50
## 4932             Brooklyn    Private room              2                 7
## 4933            Manhattan Entire home/apt              1                 2
## 4934            Manhattan Entire home/apt             30                 8
## 4935            Manhattan Entire home/apt              1                23
## 4936            Manhattan    Private room              1               295
## 4937            Manhattan Entire home/apt             30                15
## 4938            Manhattan Entire home/apt             30                 3
## 4939             Brooklyn Entire home/apt              5                 2
## 4940            Manhattan Entire home/apt              7                26
## 4941             Brooklyn    Private room              2                 4
## 4942             Brooklyn Entire home/apt              2                 4
## 4943             Brooklyn    Private room              1                 3
## 4944             Brooklyn    Private room              2                12
## 4945            Manhattan    Private room              1                75
## 4946            Manhattan Entire home/apt              3                 9
## 4947             Brooklyn Entire home/apt             28                12
## 4948             Brooklyn Entire home/apt              3                11
## 4949             Brooklyn    Private room             30                 1
## 4950            Manhattan Entire home/apt              3                 7
## 4951            Manhattan Entire home/apt              1                 4
## 4952               Queens    Private room              6                 3
## 4953             Brooklyn    Private room              3               169
## 4954               Queens Entire home/apt              1                 1
## 4955                Bronx    Private room              5                14
## 4956               Queens    Private room              3                64
## 4957            Manhattan Entire home/apt              7                 1
## 4958            Manhattan Entire home/apt              5                 7
## 4959            Manhattan Entire home/apt             14                 2
## 4960             Brooklyn Entire home/apt              2                76
## 4961            Manhattan Entire home/apt              3                25
## 4962            Manhattan    Private room              4               177
## 4963             Brooklyn    Private room              3                 1
## 4964             Brooklyn    Private room              2               199
## 4965            Manhattan Entire home/apt              7                10
## 4966            Manhattan    Private room              4                11
## 4967            Manhattan Entire home/apt              2                57
## 4968            Manhattan Entire home/apt              1                 1
## 4969            Manhattan Entire home/apt              3                38
## 4970               Queens    Private room             30                20
## 4971             Brooklyn Entire home/apt              2                11
## 4972            Manhattan Entire home/apt              3                20
## 4973            Manhattan Entire home/apt              6                 1
## 4974               Queens    Private room              2                16
## 4975            Manhattan Entire home/apt              4                75
## 4976             Brooklyn Entire home/apt              5                 1
## 4977                Bronx Entire home/apt              1                19
## 4978            Manhattan    Private room              4                33
## 4979             Brooklyn Entire home/apt              2                76
## 4980            Manhattan Entire home/apt             30                 3
## 4981            Manhattan    Private room              3               172
## 4982            Manhattan Entire home/apt              3                 2
## 4983             Brooklyn Entire home/apt             14                10
## 4984            Manhattan    Private room              1                 1
## 4985             Brooklyn Entire home/apt              4                 9
## 4986            Manhattan Entire home/apt              3                12
## 4987             Brooklyn Entire home/apt              2                10
## 4988        Staten Island Entire home/apt              2               139
## 4989            Manhattan Entire home/apt              5                26
## 4990            Manhattan    Private room              1               265
## 4991            Manhattan    Private room             30                46
## 4992            Manhattan Entire home/apt              1                37
## 4993             Brooklyn Entire home/apt              2                 5
## 4994            Manhattan Entire home/apt             30                17
## 4995            Manhattan Entire home/apt              2                 1
## 4996             Brooklyn    Private room              2                 6
## 4997             Brooklyn Entire home/apt              2                 3
## 4998            Manhattan Entire home/apt             30                 1
## 4999             Brooklyn Entire home/apt              2                 3
## 5000             Brooklyn    Private room              3                 3
## 5001             Brooklyn Entire home/apt              3                 1
## 5002             Brooklyn    Private room              2                30
## 5003               Queens Entire home/apt              2               110
## 5004            Manhattan Entire home/apt              3                 7
## 5005            Manhattan Entire home/apt             90                31
## 5006            Manhattan    Private room              2               171
## 5007            Manhattan     Shared room              1                 6
## 5008            Manhattan Entire home/apt              1                27
## 5009            Manhattan Entire home/apt              4                 1
## 5010            Manhattan    Private room              1                65
## 5011            Manhattan Entire home/apt             30                 2
## 5012            Manhattan Entire home/apt             30                11
## 5013            Manhattan Entire home/apt              2                11
## 5014             Brooklyn Entire home/apt              2               259
## 5015             Brooklyn Entire home/apt             30                23
## 5016             Brooklyn Entire home/apt              2               209
## 5017            Manhattan Entire home/apt              6                24
## 5018            Manhattan Entire home/apt              3                 8
## 5019             Brooklyn Entire home/apt              2                 2
## 5020            Manhattan Entire home/apt              4                16
## 5021             Brooklyn    Private room              2                 4
## 5022            Manhattan    Private room              1                30
## 5023             Brooklyn Entire home/apt              4                 3
## 5024             Brooklyn Entire home/apt              3               122
## 5025               Queens    Private room              2                46
## 5026            Manhattan Entire home/apt              1                 1
## 5027               Queens    Private room              2                 5
## 5028               Queens    Private room              2                22
## 5029            Manhattan    Private room              3               135
## 5030             Brooklyn Entire home/apt              4               111
## 5031            Manhattan    Private room              1               163
## 5032            Manhattan Entire home/apt              1                 1
## 5033            Manhattan    Private room              5                22
## 5034             Brooklyn Entire home/apt              2                18
## 5035            Manhattan    Private room              2                10
## 5036             Brooklyn    Private room              1                 1
## 5037             Brooklyn    Private room              2                 1
## 5038             Brooklyn Entire home/apt              2               135
## 5039            Manhattan     Shared room              1                 8
## 5040            Manhattan Entire home/apt              5                91
## 5041               Queens Entire home/apt              2               133
## 5042            Manhattan    Private room              2                21
## 5043                Bronx    Private room              1               108
## 5044                Bronx    Private room              2               122
## 5045             Brooklyn Entire home/apt              5                18
## 5046        Staten Island Entire home/apt              2                49
## 5047             Brooklyn Entire home/apt              2               130
## 5048             Brooklyn Entire home/apt              6               144
## 5049             Brooklyn Entire home/apt              3                 9
## 5050               Queens    Private room              1                15
## 5051            Manhattan    Private room              2                25
## 5052             Brooklyn    Private room              5                 1
## 5053                Bronx Entire home/apt             30                 1
## 5054            Manhattan     Shared room              2                58
## 5055            Manhattan Entire home/apt              3                51
## 5056            Manhattan Entire home/apt              4                 3
## 5057            Manhattan    Private room             14                 5
## 5058            Manhattan Entire home/apt              4                 7
## 5059             Brooklyn Entire home/apt              4                 3
## 5060            Manhattan    Private room              1                49
## 5061               Queens    Private room              4                22
## 5062             Brooklyn Entire home/apt              2               114
## 5063               Queens Entire home/apt              2                24
## 5064            Manhattan     Shared room              1                33
## 5065            Manhattan    Private room              2               125
## 5066             Brooklyn    Private room              1               151
## 5067             Brooklyn    Private room              2                50
## 5068             Brooklyn    Private room              2                52
## 5069            Manhattan    Private room              4                 1
## 5070             Brooklyn Entire home/apt              4               143
## 5071             Brooklyn Entire home/apt              2                14
## 5072            Manhattan Entire home/apt             60                 6
## 5073             Brooklyn    Private room              2                26
## 5074             Brooklyn Entire home/apt              2                31
## 5075             Brooklyn    Private room              2                24
## 5076             Brooklyn Entire home/apt              3                 8
## 5077               Queens    Private room              1                 2
## 5078             Brooklyn    Private room             30                45
## 5079            Manhattan Entire home/apt              3                24
## 5080             Brooklyn    Private room              1                 1
## 5081               Queens    Private room              1                14
## 5082            Manhattan    Private room              1                 3
## 5083            Manhattan    Private room              1               151
## 5084            Manhattan Entire home/apt              2               167
## 5085            Manhattan Entire home/apt              5                61
## 5086             Brooklyn    Private room              1                51
## 5087               Queens Entire home/apt             21                 5
## 5088             Brooklyn Entire home/apt              3               132
## 5089             Brooklyn Entire home/apt              1               170
## 5090            Manhattan    Private room              1               239
## 5091             Brooklyn Entire home/apt              3                64
## 5092            Manhattan Entire home/apt              7                34
## 5093             Brooklyn Entire home/apt              2               102
## 5094             Brooklyn Entire home/apt              2               150
## 5095            Manhattan    Private room              2                 2
## 5096            Manhattan    Private room              3                71
## 5097             Brooklyn    Private room              4                32
## 5098            Manhattan    Private room             10                12
## 5099             Brooklyn Entire home/apt              3                 2
## 5100             Brooklyn Entire home/apt              2                66
## 5101             Brooklyn Entire home/apt              2                 2
## 5102            Manhattan Entire home/apt              3                 2
## 5103             Brooklyn Entire home/apt              1               167
## 5104             Brooklyn Entire home/apt              7                 9
## 5105            Manhattan Entire home/apt              2               185
## 5106               Queens Entire home/apt              1               279
## 5107                Bronx    Private room              2                37
## 5108             Brooklyn    Private room             14                18
## 5109             Brooklyn Entire home/apt              4                 8
## 5110            Manhattan Entire home/apt              1                 1
## 5111             Brooklyn Entire home/apt              3                 9
## 5112             Brooklyn Entire home/apt             30                44
## 5113             Brooklyn Entire home/apt              3               146
## 5114             Brooklyn Entire home/apt              3                16
## 5115             Brooklyn    Private room              2                11
## 5116             Brooklyn Entire home/apt              3               120
## 5117            Manhattan Entire home/apt              5                13
## 5118             Brooklyn Entire home/apt              5                14
## 5119               Queens Entire home/apt              2               105
## 5120                Bronx    Private room              2                41
## 5121             Brooklyn    Private room              1                 8
## 5122             Brooklyn Entire home/apt              3                 1
## 5123             Brooklyn Entire home/apt              2                91
## 5124            Manhattan    Private room              4                 2
## 5125            Manhattan    Private room              3                56
## 5126             Brooklyn    Private room              2                29
## 5127             Brooklyn Entire home/apt              3                93
## 5128            Manhattan    Private room             29                10
## 5129             Brooklyn    Private room              4                18
## 5130             Brooklyn    Private room              1                36
## 5131            Manhattan    Private room              1               139
## 5132             Brooklyn Entire home/apt              1                12
## 5133             Brooklyn    Private room             28               191
## 5134               Queens Entire home/apt              2                47
## 5135             Brooklyn    Private room              2                45
## 5136             Brooklyn Entire home/apt              3                87
## 5137            Manhattan    Private room              2                 8
## 5138             Brooklyn    Private room              5                 4
## 5139             Brooklyn Entire home/apt              4                33
## 5140               Queens Entire home/apt             10                30
## 5141                Bronx    Private room              4               109
## 5142            Manhattan Entire home/apt              6                 1
## 5143             Brooklyn    Private room              1               113
## 5144               Queens    Private room              1                11
## 5145            Manhattan Entire home/apt              5                 1
## 5146            Manhattan Entire home/apt              1                 2
## 5147            Manhattan Entire home/apt             30                 6
## 5148            Manhattan    Private room              1                10
## 5149             Brooklyn    Private room              2                12
## 5150            Manhattan Entire home/apt              3                13
## 5151            Manhattan Entire home/apt              7                37
## 5152             Brooklyn Entire home/apt              5                14
## 5153               Queens Entire home/apt              1                 2
## 5154             Brooklyn Entire home/apt              2               191
## 5155            Manhattan    Private room              2                 8
## 5156             Brooklyn Entire home/apt              2                 2
## 5157            Manhattan Entire home/apt              3                 6
## 5158            Manhattan Entire home/apt             14                78
## 5159             Brooklyn    Private room              3                 8
## 5160             Brooklyn Entire home/apt              2                37
## 5161             Brooklyn    Private room              2                21
## 5162             Brooklyn    Private room              2                22
## 5163             Brooklyn    Private room              2                38
## 5164             Brooklyn    Private room              2                61
## 5165             Brooklyn Entire home/apt              3                12
## 5166             Brooklyn    Private room              2                11
## 5167             Brooklyn    Private room              2               114
## 5168             Brooklyn Entire home/apt              3               131
## 5169             Brooklyn Entire home/apt              1                 5
## 5170            Manhattan    Private room              1                 5
## 5171            Manhattan    Private room              3                86
## 5172            Manhattan    Private room              2                82
## 5173            Manhattan Entire home/apt             30                35
## 5174            Manhattan Entire home/apt              1                 6
## 5175             Brooklyn    Private room              1               202
## 5176             Brooklyn    Private room              1                 1
## 5177            Manhattan Entire home/apt              2                10
## 5178               Queens Entire home/apt              7                 2
## 5179             Brooklyn Entire home/apt              3                56
## 5180            Manhattan Entire home/apt              2                 7
## 5181             Brooklyn Entire home/apt              2               204
## 5182               Queens    Private room              4                20
## 5183               Queens    Private room              3                23
## 5184            Manhattan Entire home/apt              3                33
## 5185            Manhattan    Private room             23                12
## 5186             Brooklyn    Private room             12                24
## 5187            Manhattan Entire home/apt              2               232
## 5188             Brooklyn    Private room              3                47
## 5189             Brooklyn    Private room              2               174
## 5190               Queens Entire home/apt             30                 4
## 5191            Manhattan    Private room              1               394
## 5192            Manhattan Entire home/apt             30                 5
## 5193            Manhattan Entire home/apt              2                 9
## 5194             Brooklyn Entire home/apt              2                11
## 5195            Manhattan Entire home/apt              1                50
## 5196             Brooklyn    Private room              6                 1
## 5197            Manhattan    Private room              4                87
## 5198               Queens    Private room             30                 4
## 5199             Brooklyn    Private room              5               125
## 5200             Brooklyn Entire home/apt              4                43
## 5201             Brooklyn Entire home/apt              3                37
## 5202             Brooklyn     Shared room              1                81
## 5203            Manhattan    Private room              4                 7
## 5204             Brooklyn    Private room             15                 1
## 5205             Brooklyn Entire home/apt              2                 1
## 5206             Brooklyn    Private room              3                19
## 5207            Manhattan    Private room              9                 5
## 5208             Brooklyn    Private room              3                 5
## 5209             Brooklyn Entire home/apt              3               131
## 5210               Queens    Private room              3                17
## 5211             Brooklyn    Private room              1                32
## 5212             Brooklyn    Private room              1               357
## 5213            Manhattan Entire home/apt              3                10
## 5214             Brooklyn Entire home/apt              1                 3
## 5215             Brooklyn    Private room              2                86
## 5216             Brooklyn    Private room              5                92
## 5217               Queens Entire home/apt              2                 1
## 5218             Brooklyn Entire home/apt              7                69
## 5219            Manhattan Entire home/apt              3                 5
## 5220            Manhattan Entire home/apt              3                 3
## 5221             Brooklyn    Private room             15                 1
## 5222               Queens    Private room             21                38
## 5223             Brooklyn    Private room              5               108
## 5224             Brooklyn Entire home/apt              3               105
## 5225            Manhattan Entire home/apt             60                 9
## 5226             Brooklyn Entire home/apt              3                82
## 5227             Brooklyn    Private room              1                12
## 5228            Manhattan Entire home/apt              3                11
## 5229             Brooklyn    Private room              7                20
## 5230             Brooklyn Entire home/apt             30               131
## 5231            Manhattan    Private room              3                34
## 5232            Manhattan Entire home/apt              2               160
## 5233             Brooklyn    Private room              2                 1
## 5234            Manhattan Entire home/apt             30                15
## 5235             Brooklyn Entire home/apt              2               148
## 5236             Brooklyn    Private room              1               229
## 5237            Manhattan Entire home/apt              1                 1
## 5238             Brooklyn    Private room              1               360
## 5239            Manhattan Entire home/apt              3                15
## 5240            Manhattan Entire home/apt              3                10
## 5241               Queens    Private room              2                76
## 5242            Manhattan Entire home/apt              4               179
## 5243             Brooklyn    Private room              7                 7
## 5244             Brooklyn Entire home/apt              2               128
## 5245            Manhattan Entire home/apt              7                 3
## 5246             Brooklyn Entire home/apt              1               223
## 5247             Brooklyn    Private room              1                10
## 5248             Brooklyn Entire home/apt              5                 6
## 5249        Staten Island Entire home/apt              7                35
## 5250             Brooklyn Entire home/apt              1                 4
## 5251             Brooklyn    Private room              5               102
## 5252             Brooklyn Entire home/apt              7                11
## 5253            Manhattan Entire home/apt              1                 1
## 5254             Brooklyn Entire home/apt              3                 3
## 5255               Queens    Private room              1               127
## 5256            Manhattan     Shared room              1                88
## 5257             Brooklyn Entire home/apt              2                 3
## 5258             Brooklyn Entire home/apt              2                 4
## 5259             Brooklyn Entire home/apt              3                95
## 5260            Manhattan Entire home/apt              7                 1
## 5261               Queens Entire home/apt              2               157
## 5262             Brooklyn Entire home/apt              2               222
## 5263            Manhattan Entire home/apt              2                11
## 5264            Manhattan Entire home/apt              4                26
## 5265             Brooklyn    Private room              1               350
## 5266             Brooklyn Entire home/apt              2                19
## 5267            Manhattan Entire home/apt              1               202
## 5268            Manhattan Entire home/apt              1                10
## 5269             Brooklyn Entire home/apt              2               116
## 5270               Queens Entire home/apt              1               196
## 5271             Brooklyn Entire home/apt              2                 7
## 5272            Manhattan    Private room              1               319
## 5273             Brooklyn Entire home/apt              2                 3
## 5274             Brooklyn Entire home/apt              5                16
## 5275             Brooklyn    Private room              2                11
## 5276             Brooklyn Entire home/apt              3               121
## 5277             Brooklyn Entire home/apt              2                76
## 5278            Manhattan Entire home/apt              4                73
## 5279               Queens Entire home/apt              3               124
## 5280             Brooklyn    Private room             10                 7
## 5281            Manhattan Entire home/apt              1                 1
## 5282             Brooklyn Entire home/apt              4                17
## 5283               Queens Entire home/apt              7                 9
## 5284            Manhattan    Private room             30                 4
## 5285            Manhattan Entire home/apt              3                 1
## 5286             Brooklyn    Private room              2               129
## 5287               Queens Entire home/apt              1               352
## 5288            Manhattan Entire home/apt              2                92
## 5289             Brooklyn    Private room              1               110
## 5290             Brooklyn    Private room              1                 1
## 5291             Brooklyn    Private room              1                52
## 5292            Manhattan     Shared room              1                 1
## 5293            Manhattan Entire home/apt              4                 1
## 5294            Manhattan Entire home/apt              2                 5
## 5295            Manhattan Entire home/apt              1               198
## 5296            Manhattan    Private room              7                23
## 5297             Brooklyn Entire home/apt              4               120
## 5298            Manhattan Entire home/apt              2               105
## 5299            Manhattan Entire home/apt              6                 5
## 5300            Manhattan    Private room              1                46
## 5301             Brooklyn Entire home/apt              3                11
## 5302             Brooklyn Entire home/apt              6                27
## 5303            Manhattan Entire home/apt              4                82
## 5304            Manhattan Entire home/apt              2                82
## 5305            Manhattan Entire home/apt              3                 2
## 5306               Queens Entire home/apt             30                 2
## 5307             Brooklyn Entire home/apt              3                15
## 5308             Brooklyn Entire home/apt             10                36
## 5309             Brooklyn    Private room              2                25
## 5310               Queens    Private room             31                 5
## 5311               Queens    Private room             30                13
## 5312             Brooklyn     Shared room              2                13
## 5313            Manhattan    Private room              1                 2
## 5314            Manhattan    Private room              3               140
## 5315               Queens Entire home/apt              2               112
## 5316               Queens Entire home/apt              3                 3
## 5317             Brooklyn Entire home/apt              2                 7
## 5318            Manhattan    Private room              3               126
## 5319             Brooklyn    Private room              1               121
## 5320            Manhattan Entire home/apt              4                57
## 5321            Manhattan    Private room              2                 1
## 5322               Queens    Private room              2                37
## 5323            Manhattan Entire home/apt              2                23
## 5324            Manhattan Entire home/apt              3               162
## 5325            Manhattan Entire home/apt              3                38
## 5326            Manhattan Entire home/apt              3                18
## 5327            Manhattan Entire home/apt              1                64
## 5328             Brooklyn    Private room              4                91
## 5329             Brooklyn Entire home/apt              2                57
## 5330             Brooklyn Entire home/apt              2                32
## 5331            Manhattan Entire home/apt             30                13
## 5332                Bronx     Shared room              1                 7
## 5333            Manhattan Entire home/apt              3                23
## 5334               Queens Entire home/apt              2                77
## 5335             Brooklyn    Private room              1                 2
## 5336            Manhattan Entire home/apt              2               122
## 5337             Brooklyn    Private room              2               100
## 5338             Brooklyn    Private room              3                 2
## 5339            Manhattan Entire home/apt              1                26
## 5340             Brooklyn    Private room              1               351
## 5341            Manhattan Entire home/apt              7                 9
## 5342            Manhattan Entire home/apt              2                79
## 5343            Manhattan Entire home/apt              1                16
## 5344            Manhattan Entire home/apt              4                 8
## 5345            Manhattan Entire home/apt              1                43
## 5346             Brooklyn Entire home/apt              2                51
## 5347            Manhattan Entire home/apt              3                62
## 5348            Manhattan Entire home/apt              3                 1
## 5349               Queens    Private room              2                42
## 5350             Brooklyn    Private room              1                74
## 5351             Brooklyn Entire home/apt              1                43
## 5352             Brooklyn    Private room              1                 1
## 5353            Manhattan Entire home/apt              1                 1
## 5354            Manhattan    Private room              1                 7
## 5355             Brooklyn    Private room              2                45
## 5356             Brooklyn Entire home/apt             30                 1
## 5357             Brooklyn    Private room              1                 5
## 5358            Manhattan Entire home/apt              4                25
## 5359            Manhattan Entire home/apt              1               107
## 5360                Bronx    Private room              2                63
## 5361             Brooklyn Entire home/apt              3                11
## 5362            Manhattan Entire home/apt              2               194
## 5363             Brooklyn Entire home/apt              8                33
## 5364               Queens    Private room              1                33
## 5365             Brooklyn    Private room             30                44
## 5366               Queens Entire home/apt              1                34
## 5367             Brooklyn Entire home/apt              2                88
## 5368            Manhattan Entire home/apt              1               186
## 5369             Brooklyn    Private room              2                46
## 5370            Manhattan Entire home/apt              2                58
## 5371            Manhattan    Private room            364                 8
## 5372            Manhattan    Private room              7                15
## 5373             Brooklyn Entire home/apt              3               149
## 5374             Brooklyn Entire home/apt             31                 8
## 5375            Manhattan    Private room              3                64
## 5376             Brooklyn Entire home/apt              3                43
## 5377             Brooklyn Entire home/apt             10                 2
## 5378            Manhattan Entire home/apt              7                 6
## 5379            Manhattan Entire home/apt              1                20
## 5380            Manhattan Entire home/apt              2                36
## 5381            Manhattan Entire home/apt              2                56
## 5382            Manhattan    Private room              6                20
## 5383            Manhattan Entire home/apt              3                13
## 5384            Manhattan Entire home/apt             10                 2
## 5385            Manhattan Entire home/apt              1                23
## 5386             Brooklyn Entire home/apt              3               118
## 5387             Brooklyn Entire home/apt              5                 1
## 5388            Manhattan Entire home/apt             30                 6
## 5389            Manhattan Entire home/apt              2                 9
## 5390             Brooklyn Entire home/apt              1                10
## 5391             Brooklyn Entire home/apt              1                84
## 5392             Brooklyn Entire home/apt              6                 2
## 5393               Queens    Private room              3                 2
## 5394             Brooklyn Entire home/apt             90                91
## 5395             Brooklyn Entire home/apt             30                 5
## 5396             Brooklyn Entire home/apt              3                62
## 5397             Brooklyn Entire home/apt              3                21
## 5398             Brooklyn Entire home/apt              2                17
## 5399            Manhattan    Private room              4                14
## 5400            Manhattan    Private room              7                 3
## 5401             Brooklyn    Private room              1               153
## 5402            Manhattan    Private room              6                12
## 5403             Brooklyn    Private room              1                33
## 5404             Brooklyn Entire home/apt              5                26
## 5405            Manhattan    Private room              3                 1
## 5406            Manhattan    Private room              4                 1
## 5407             Brooklyn    Private room             14                 9
## 5408             Brooklyn Entire home/apt              3                 8
## 5409            Manhattan    Private room             26                47
## 5410             Brooklyn Entire home/apt              2               112
## 5411            Manhattan Entire home/apt              5                21
## 5412               Queens Entire home/apt              3                85
## 5413             Brooklyn Entire home/apt              2                20
## 5414             Brooklyn Entire home/apt              2                37
## 5415             Brooklyn Entire home/apt              3               122
## 5416               Queens    Private room              2                14
## 5417               Queens Entire home/apt              2                 7
## 5418            Manhattan Entire home/apt              2                10
## 5419             Brooklyn Entire home/apt              2                83
## 5420            Manhattan Entire home/apt              3                 5
## 5421             Brooklyn Entire home/apt             14                 5
## 5422             Brooklyn Entire home/apt              1               141
## 5423            Manhattan    Private room             14                14
## 5424            Manhattan    Private room              2                 9
## 5425             Brooklyn Entire home/apt              2               192
## 5426             Brooklyn    Private room              4                10
## 5427             Brooklyn Entire home/apt              5                 7
## 5428             Brooklyn Entire home/apt              3                50
## 5429             Brooklyn Entire home/apt              2                 4
## 5430            Manhattan Entire home/apt              3                 5
## 5431            Manhattan Entire home/apt              7                 5
## 5432               Queens    Private room              5                 1
## 5433            Manhattan Entire home/apt              3                 6
## 5434            Manhattan Entire home/apt              4               180
## 5435             Brooklyn    Private room              2                63
## 5436             Brooklyn Entire home/apt              3               207
## 5437            Manhattan Entire home/apt              6                 1
## 5438             Brooklyn    Private room              8                 1
## 5439            Manhattan Entire home/apt              2                 1
## 5440             Brooklyn    Private room              2                12
## 5441             Brooklyn Entire home/apt              2                88
## 5442             Brooklyn    Private room              2                 1
## 5443             Brooklyn    Private room              1                 1
## 5444            Manhattan Entire home/apt              3                12
## 5445            Manhattan Entire home/apt              2               178
## 5446            Manhattan Entire home/apt             21                 1
## 5447               Queens    Private room              2                 1
## 5448             Brooklyn Entire home/apt              3                87
## 5449             Brooklyn Entire home/apt              2                 9
## 5450            Manhattan     Shared room              2                 3
## 5451            Manhattan Entire home/apt             30                 4
## 5452               Queens    Private room              1                 4
## 5453            Manhattan Entire home/apt              1                10
## 5454            Manhattan Entire home/apt             30                 7
## 5455               Queens    Private room              1                 1
## 5456            Manhattan Entire home/apt              2                 2
## 5457               Queens    Private room              1                13
## 5458            Manhattan Entire home/apt              1                 7
## 5459               Queens Entire home/apt              4                79
## 5460             Brooklyn    Private room              1               158
## 5461            Manhattan    Private room              4                56
## 5462             Brooklyn Entire home/apt              4                60
## 5463             Brooklyn    Private room              1                 4
## 5464             Brooklyn Entire home/apt              2               195
## 5465            Manhattan Entire home/apt              4                 4
## 5466               Queens Entire home/apt              3                82
## 5467             Brooklyn Entire home/apt              3                 3
## 5468             Brooklyn    Private room              1                 1
## 5469               Queens    Private room              3                45
## 5470             Brooklyn    Private room              2                53
## 5471            Manhattan Entire home/apt              4                68
## 5472             Brooklyn    Private room              4                12
## 5473            Manhattan    Private room              3                83
## 5474                Bronx    Private room              2                42
## 5475             Brooklyn Entire home/apt              1               102
## 5476            Manhattan Entire home/apt              2                 4
## 5477             Brooklyn Entire home/apt              1                50
## 5478            Manhattan    Private room              3                56
## 5479            Manhattan    Private room              1                22
## 5480             Brooklyn Entire home/apt              3                 7
## 5481             Brooklyn    Private room              1                 8
## 5482            Manhattan    Private room              7                 1
## 5483             Brooklyn Entire home/apt             14                 1
## 5484             Brooklyn    Private room              3                 7
## 5485            Manhattan    Private room              2               114
## 5486            Manhattan Entire home/apt              1                 8
## 5487            Manhattan Entire home/apt              2                22
## 5488            Manhattan Entire home/apt             30                 4
## 5489            Manhattan Entire home/apt             30                 8
## 5490             Brooklyn Entire home/apt              1               323
## 5491            Manhattan Entire home/apt             30                20
## 5492             Brooklyn Entire home/apt              3                19
## 5493            Manhattan Entire home/apt              4                21
## 5494             Brooklyn Entire home/apt              6                 5
## 5495             Brooklyn    Private room              1                75
## 5496             Brooklyn Entire home/apt              4                 7
## 5497             Brooklyn Entire home/apt              2                19
## 5498             Brooklyn Entire home/apt              2                 5
## 5499               Queens Entire home/apt              2               192
## 5500            Manhattan Entire home/apt              5                 3
## 5501            Manhattan     Shared room              2               126
## 5502            Manhattan Entire home/apt              2                36
## 5503             Brooklyn    Private room              7                21
## 5504            Manhattan    Private room              1               102
## 5505            Manhattan Entire home/apt              3                28
## 5506            Manhattan    Private room              2                 6
## 5507            Manhattan Entire home/apt              2                19
## 5508            Manhattan    Private room              2                 9
## 5509            Manhattan    Private room              6                10
## 5510             Brooklyn Entire home/apt              2               179
## 5511            Manhattan Entire home/apt              5                38
## 5512             Brooklyn    Private room              1                14
## 5513             Brooklyn Entire home/apt              3                 4
## 5514            Manhattan Entire home/apt             30                21
## 5515            Manhattan Entire home/apt             30                 4
## 5516             Brooklyn    Private room              2                11
## 5517             Brooklyn Entire home/apt              3                 6
## 5518            Manhattan Entire home/apt              2                 9
## 5519            Manhattan Entire home/apt             30                 5
## 5520            Manhattan    Private room              1                26
## 5521                Bronx Entire home/apt             30                18
## 5522             Brooklyn Entire home/apt              2                 1
## 5523               Queens Entire home/apt             30                11
## 5524            Manhattan Entire home/apt              1                 8
## 5525             Brooklyn Entire home/apt              2               103
## 5526            Manhattan Entire home/apt              2                84
## 5527            Manhattan Entire home/apt              5                 9
## 5528            Manhattan    Private room              2               150
## 5529             Brooklyn Entire home/apt              3               189
## 5530             Brooklyn    Private room              3                 4
## 5531                Bronx    Private room              3                20
## 5532             Brooklyn Entire home/apt              1                 7
## 5533             Brooklyn Entire home/apt              1                 4
## 5534            Manhattan    Private room              3                48
## 5535            Manhattan Entire home/apt              3                66
## 5536                Bronx    Private room              2                97
## 5537            Manhattan Entire home/apt              3                 2
## 5538            Manhattan Entire home/apt              2                 9
## 5539             Brooklyn    Private room              3                35
## 5540            Manhattan Entire home/apt              7                95
## 5541             Brooklyn    Private room              2               108
## 5542            Manhattan Entire home/apt              4               143
## 5543            Manhattan Entire home/apt              6               186
## 5544                Bronx    Private room             30                 6
## 5545            Manhattan Entire home/apt              1               136
## 5546            Manhattan Entire home/apt              2               146
## 5547            Manhattan    Private room              2               219
## 5548            Manhattan Entire home/apt              3                28
## 5549               Queens Entire home/apt              1                 1
## 5550            Manhattan Entire home/apt             30               159
## 5551            Manhattan Entire home/apt              2                23
## 5552             Brooklyn Entire home/apt              3                24
## 5553               Queens Entire home/apt              4                44
## 5554             Brooklyn Entire home/apt              3                15
## 5555             Brooklyn Entire home/apt              3                 4
## 5556             Brooklyn Entire home/apt             14                 1
## 5557             Brooklyn    Private room              2                 6
## 5558            Manhattan    Private room              2                11
## 5559             Brooklyn    Private room             30                 2
## 5560            Manhattan    Private room              3               211
## 5561            Manhattan    Private room              1                 4
## 5562             Brooklyn    Private room              2                15
## 5563            Manhattan Entire home/apt              1                 2
## 5564             Brooklyn Entire home/apt              3                 2
## 5565             Brooklyn Entire home/apt              2               190
## 5566            Manhattan Entire home/apt              2                19
## 5567            Manhattan Entire home/apt              1                 2
## 5568             Brooklyn Entire home/apt              3                 3
## 5569            Manhattan    Private room              5                 2
## 5570             Brooklyn Entire home/apt              8                14
## 5571            Manhattan Entire home/apt             30                 1
## 5572             Brooklyn    Private room             30                 2
## 5573             Brooklyn    Private room              2                11
## 5574             Brooklyn Entire home/apt              1                17
## 5575            Manhattan Entire home/apt              5                91
## 5576            Manhattan Entire home/apt              2                17
## 5577            Manhattan Entire home/apt             30                17
## 5578            Manhattan Entire home/apt              2                 1
## 5579            Manhattan    Private room              1                 9
## 5580             Brooklyn Entire home/apt              7                 6
## 5581            Manhattan    Private room              3                64
## 5582            Manhattan Entire home/apt              2                20
## 5583             Brooklyn Entire home/apt              4                58
## 5584                Bronx    Private room             28                27
## 5585             Brooklyn    Private room              2                 2
## 5586            Manhattan Entire home/apt              2                21
## 5587            Manhattan    Private room              1                22
## 5588            Manhattan Entire home/apt             30                 7
## 5589            Manhattan Entire home/apt             30                 9
## 5590            Manhattan Entire home/apt              2                 6
## 5591            Manhattan Entire home/apt              3                35
## 5592            Manhattan    Private room              1                 1
## 5593            Manhattan    Private room              3                 3
## 5594            Manhattan Entire home/apt             30                 1
## 5595             Brooklyn    Private room              1                 4
## 5596             Brooklyn    Private room              5                81
## 5597             Brooklyn    Private room              5                89
## 5598            Manhattan    Private room              2               146
## 5599               Queens Entire home/apt              2                84
## 5600            Manhattan Entire home/apt             74                 7
## 5601               Queens Entire home/apt              1                 3
## 5602            Manhattan    Private room              3                66
## 5603            Manhattan    Private room              3                18
## 5604            Manhattan    Private room              2               109
## 5605            Manhattan Entire home/apt              1                 2
## 5606             Brooklyn    Private room              1               105
## 5607             Brooklyn Entire home/apt              3                 7
## 5608            Manhattan Entire home/apt            180                 7
## 5609             Brooklyn Entire home/apt              3                15
## 5610             Brooklyn    Private room              1               170
## 5611            Manhattan Entire home/apt              1               150
## 5612             Brooklyn    Private room              2                 4
## 5613             Brooklyn    Private room              3                 4
## 5614               Queens Entire home/apt              7                53
## 5615               Queens    Private room             31                 2
## 5616             Brooklyn Entire home/apt              1                 2
## 5617            Manhattan    Private room              1                21
## 5618             Brooklyn    Private room              1               130
## 5619            Manhattan Entire home/apt              2                23
## 5620               Queens Entire home/apt              2                18
## 5621            Manhattan Entire home/apt              3                18
## 5622             Brooklyn Entire home/apt              4                 6
## 5623             Brooklyn Entire home/apt             30                23
## 5624               Queens Entire home/apt              2                12
## 5625            Manhattan Entire home/apt              3                28
## 5626             Brooklyn    Private room              1                22
## 5627            Manhattan    Private room              2                24
## 5628             Brooklyn Entire home/apt              5                 1
## 5629            Manhattan Entire home/apt              3                33
## 5630            Manhattan Entire home/apt              4                 3
## 5631             Brooklyn Entire home/apt              3                 3
## 5632            Manhattan     Shared room              2                54
## 5633            Manhattan    Private room              2                 3
## 5634            Manhattan Entire home/apt              3                74
## 5635               Queens    Private room              1               356
## 5636               Queens Entire home/apt             28                50
## 5637               Queens    Private room              1               426
## 5638             Brooklyn    Private room              1                77
## 5639             Brooklyn    Private room              2                37
## 5640             Brooklyn    Private room              1               210
## 5641             Brooklyn    Private room              1               194
## 5642             Brooklyn Entire home/apt              5                 1
## 5643             Brooklyn Entire home/apt              6                 3
## 5644               Queens Entire home/apt             25                14
## 5645            Manhattan    Private room              7                15
## 5646               Queens Entire home/apt              5                27
## 5647            Manhattan Entire home/apt              7                 7
## 5648            Manhattan    Private room              1               186
## 5649            Manhattan Entire home/apt              6                39
## 5650            Manhattan Entire home/apt             21               193
## 5651            Manhattan    Private room              4                91
## 5652            Manhattan Entire home/apt              2                81
## 5653            Manhattan Entire home/apt              3                12
## 5654               Queens Entire home/apt              6                38
## 5655             Brooklyn    Private room              1                89
## 5656            Manhattan Entire home/apt              4                10
## 5657            Manhattan Entire home/apt              2                63
## 5658             Brooklyn    Private room              8                 6
## 5659             Brooklyn    Private room              5                 1
## 5660            Manhattan Entire home/apt              2                40
## 5661            Manhattan Entire home/apt              1                12
## 5662            Manhattan Entire home/apt              3               145
## 5663            Manhattan    Private room              2                70
## 5664            Manhattan    Private room             30                 2
## 5665             Brooklyn Entire home/apt              3               114
## 5666             Brooklyn Entire home/apt              3                27
## 5667             Brooklyn Entire home/apt              3                11
## 5668            Manhattan Entire home/apt              5                 5
## 5669             Brooklyn Entire home/apt              2                99
## 5670             Brooklyn Entire home/apt              2                79
## 5671            Manhattan Entire home/apt              2                18
## 5672            Manhattan Entire home/apt              3                20
## 5673            Manhattan Entire home/apt             30                24
## 5674             Brooklyn    Private room              2               100
## 5675            Manhattan Entire home/apt              3                 1
## 5676            Manhattan Entire home/apt             30                 7
## 5677             Brooklyn Entire home/apt              2                 2
## 5678             Brooklyn    Private room              1                38
## 5679             Brooklyn    Private room              1                 7
## 5680            Manhattan Entire home/apt              2                42
## 5681               Queens Entire home/apt              2                21
## 5682             Brooklyn Entire home/apt              1                40
## 5683            Manhattan Entire home/apt             30                12
## 5684               Queens    Private room              3                46
## 5685            Manhattan Entire home/apt              1               242
## 5686            Manhattan Entire home/apt             30                10
## 5687            Manhattan    Private room              1                 2
## 5688             Brooklyn Entire home/apt              4                 2
## 5689             Brooklyn Entire home/apt             15                22
## 5690             Brooklyn    Private room              2               224
## 5691             Brooklyn    Private room              3                50
## 5692            Manhattan Entire home/apt             12                20
## 5693             Brooklyn Entire home/apt              1                 1
## 5694            Manhattan Entire home/apt              5                 1
## 5695            Manhattan Entire home/apt              3                10
## 5696               Queens    Private room              1                21
## 5697             Brooklyn    Private room              7                98
## 5698            Manhattan Entire home/apt              3                 6
## 5699            Manhattan Entire home/apt              7                23
## 5700             Brooklyn Entire home/apt             30                 5
## 5701            Manhattan    Private room              2                 2
## 5702            Manhattan Entire home/apt              4                 5
## 5703            Manhattan Entire home/apt              2                 7
## 5704            Manhattan    Private room             10                57
## 5705            Manhattan Entire home/apt              3                 1
## 5706             Brooklyn Entire home/apt              4                20
## 5707            Manhattan    Private room              7                 5
## 5708             Brooklyn    Private room              3                 1
## 5709            Manhattan Entire home/apt              2                54
## 5710            Manhattan Entire home/apt             30                 7
## 5711            Manhattan Entire home/apt             30                 5
## 5712             Brooklyn Entire home/apt              1                44
## 5713            Manhattan Entire home/apt              2               122
## 5714            Manhattan Entire home/apt              7                 6
## 5715             Brooklyn Entire home/apt              7                 3
## 5716             Brooklyn Entire home/apt              4                 4
## 5717            Manhattan Entire home/apt              2                45
## 5718            Manhattan    Private room             14                 8
## 5719             Brooklyn Entire home/apt              1                 1
## 5720             Brooklyn    Private room              3                37
## 5721             Brooklyn    Private room              4                14
## 5722             Brooklyn Entire home/apt              3               103
## 5723               Queens    Private room              5                 4
## 5724             Brooklyn Entire home/apt              3                48
## 5725            Manhattan Entire home/apt              3                29
## 5726             Brooklyn    Private room              1                 2
## 5727               Queens Entire home/apt              2                 1
## 5728             Brooklyn Entire home/apt             30                 3
## 5729            Manhattan    Private room              2                92
## 5730            Manhattan    Private room             30                12
## 5731                Bronx    Private room              1                 9
## 5732               Queens    Private room              5                 2
## 5733            Manhattan Entire home/apt              4                57
## 5734            Manhattan Entire home/apt              1                 8
## 5735               Queens    Private room              5                 9
## 5736               Queens Entire home/apt              3                26
## 5737               Queens Entire home/apt              3               149
## 5738             Brooklyn    Private room              1                 4
## 5739             Brooklyn Entire home/apt              2               214
## 5740             Brooklyn    Private room              5                14
## 5741            Manhattan    Private room              2                38
## 5742            Manhattan    Private room              2                13
## 5743             Brooklyn    Private room              5                86
## 5744             Brooklyn Entire home/apt              3                15
## 5745            Manhattan    Private room              1                40
## 5746               Queens    Private room              1                 3
## 5747            Manhattan Entire home/apt              7                 2
## 5748            Manhattan Entire home/apt              5                13
## 5749             Brooklyn Entire home/apt              7                23
## 5750            Manhattan Entire home/apt              2                 5
## 5751            Manhattan Entire home/apt             30                 3
## 5752            Manhattan Entire home/apt              4                13
## 5753             Brooklyn Entire home/apt            200               271
## 5754            Manhattan Entire home/apt              5                64
## 5755            Manhattan Entire home/apt              2                 9
## 5756             Brooklyn Entire home/apt              2                 5
## 5757            Manhattan    Private room              4                59
## 5758             Brooklyn Entire home/apt              4               159
## 5759             Brooklyn    Private room              6                10
## 5760            Manhattan     Shared room             10                21
## 5761            Manhattan Entire home/apt             14                20
## 5762             Brooklyn    Private room              2                88
## 5763            Manhattan Entire home/apt              3                42
## 5764             Brooklyn    Private room             14                 3
## 5765            Manhattan Entire home/apt              4                25
## 5766             Brooklyn Entire home/apt              3                56
## 5767            Manhattan    Private room              1                 1
## 5768             Brooklyn Entire home/apt              3                 4
## 5769             Brooklyn Entire home/apt              5                 4
## 5770            Manhattan Entire home/apt              3                31
## 5771             Brooklyn Entire home/apt              2                 7
## 5772            Manhattan Entire home/apt              1                46
## 5773            Manhattan Entire home/apt              5                81
## 5774            Manhattan Entire home/apt              1                66
## 5775            Manhattan Entire home/apt              3                 6
## 5776               Queens    Private room              3                18
## 5777             Brooklyn Entire home/apt              2                18
## 5778             Brooklyn    Private room             14                18
## 5779            Manhattan    Private room              3               122
## 5780            Manhattan    Private room             30                 4
## 5781             Brooklyn    Private room              3               148
## 5782            Manhattan Entire home/apt              5                 6
## 5783            Manhattan    Private room              7                 1
## 5784            Manhattan Entire home/apt             14                 2
## 5785            Manhattan Entire home/apt              3                41
## 5786               Queens    Private room              7                 1
## 5787               Queens Entire home/apt              3                86
## 5788            Manhattan    Private room             30                 5
## 5789            Manhattan Entire home/apt             30                31
## 5790                Bronx Entire home/apt              5                 1
## 5791            Manhattan Entire home/apt             30                15
## 5792             Brooklyn Entire home/apt              1                 9
## 5793            Manhattan Entire home/apt              3                 8
## 5794                Bronx    Private room              1                56
## 5795            Manhattan Entire home/apt              4               108
## 5796             Brooklyn Entire home/apt              3                22
## 5797            Manhattan Entire home/apt              3                 1
## 5798             Brooklyn    Private room             30                 6
## 5799            Manhattan Entire home/apt              5                 5
## 5800             Brooklyn    Private room              1               222
## 5801            Manhattan    Private room              1                 7
## 5802            Manhattan    Private room              2                 7
## 5803               Queens Entire home/apt              7                 3
## 5804            Manhattan    Private room              2                68
## 5805            Manhattan Entire home/apt              1                 3
## 5806            Manhattan    Private room             10                38
## 5807             Brooklyn Entire home/apt             30                 6
## 5808            Manhattan Entire home/apt             30                 6
## 5809            Manhattan Entire home/apt              7                11
## 5810             Brooklyn    Private room              2               120
## 5811             Brooklyn Entire home/apt              4                 1
## 5812             Brooklyn    Private room              4                 3
## 5813            Manhattan Entire home/apt              1                 1
## 5814             Brooklyn Entire home/apt              1               185
## 5815             Brooklyn    Private room              3                41
## 5816            Manhattan Entire home/apt              4                26
## 5817            Manhattan Entire home/apt              3                 2
## 5818            Manhattan    Private room              1                 3
## 5819            Manhattan    Private room              7                10
## 5820            Manhattan Entire home/apt             11                 5
## 5821             Brooklyn Entire home/apt             20                 1
## 5822             Brooklyn Entire home/apt              2                 1
## 5823             Brooklyn Entire home/apt              3                15
## 5824             Brooklyn Entire home/apt              4                19
## 5825             Brooklyn    Private room              4                 1
## 5826            Manhattan Entire home/apt              7                28
## 5827            Manhattan    Private room              2                58
## 5828            Manhattan    Private room              3                25
## 5829             Brooklyn    Private room              2                23
## 5830             Brooklyn Entire home/apt              2                 8
## 5831            Manhattan Entire home/apt              7                 8
## 5832               Queens    Private room              3                74
## 5833            Manhattan     Shared room              1                 4
## 5834            Manhattan    Private room              3                 1
## 5835            Manhattan    Private room              1                 1
## 5836             Brooklyn Entire home/apt              2                 8
## 5837             Brooklyn    Private room              1                24
## 5838            Manhattan    Private room              2                 1
## 5839            Manhattan Entire home/apt              3                44
## 5840             Brooklyn Entire home/apt              2                 8
## 5841            Manhattan Entire home/apt             10                 3
## 5842               Queens     Shared room              1                19
## 5843             Brooklyn    Private room              2                 3
## 5844            Manhattan    Private room              3                 1
## 5845            Manhattan Entire home/apt             30                 6
## 5846            Manhattan Entire home/apt              3               133
## 5847             Brooklyn    Private room              2                 8
## 5848             Brooklyn Entire home/apt              4                 8
## 5849             Brooklyn    Private room              6                 1
## 5850               Queens Entire home/apt              3                63
## 5851            Manhattan Entire home/apt              3                94
## 5852             Brooklyn Entire home/apt              4                 7
## 5853             Brooklyn Entire home/apt              4                12
## 5854             Brooklyn Entire home/apt              6                28
## 5855            Manhattan Entire home/apt              1                67
## 5856            Manhattan Entire home/apt              2                 6
## 5857            Manhattan Entire home/apt              1               142
## 5858            Manhattan Entire home/apt             30                31
## 5859            Manhattan Entire home/apt              2                95
## 5860             Brooklyn    Private room              2                15
## 5861            Manhattan Entire home/apt              5                 1
## 5862             Brooklyn    Private room              1                 1
## 5863             Brooklyn Entire home/apt              1                 1
## 5864            Manhattan Entire home/apt             30                16
## 5865             Brooklyn Entire home/apt              7                 6
## 5866            Manhattan Entire home/apt              2                 6
## 5867             Brooklyn    Private room              1                13
## 5868             Brooklyn Entire home/apt              2                 5
## 5869            Manhattan Entire home/apt              1                 3
## 5870             Brooklyn    Private room              3                10
## 5871             Brooklyn    Private room              2                 9
## 5872             Brooklyn    Private room              4                 5
## 5873             Brooklyn Entire home/apt              1                18
## 5874             Brooklyn Entire home/apt              4                 5
## 5875            Manhattan    Private room              2                 4
## 5876            Manhattan    Private room             14                 1
## 5877               Queens    Private room              1                72
## 5878             Brooklyn    Private room              1                 3
## 5879            Manhattan Entire home/apt              5                 1
## 5880                Bronx Entire home/apt              1                15
## 5881            Manhattan    Private room              1                 1
## 5882             Brooklyn Entire home/apt              5                14
## 5883             Brooklyn Entire home/apt              3                19
## 5884             Brooklyn Entire home/apt              3                52
## 5885               Queens Entire home/apt              2                30
## 5886            Manhattan Entire home/apt              3               111
## 5887            Manhattan Entire home/apt              3                57
## 5888             Brooklyn    Private room              2                19
## 5889             Brooklyn Entire home/apt             30                29
## 5890            Manhattan Entire home/apt              4                 4
## 5891            Manhattan Entire home/apt              4                17
## 5892             Brooklyn Entire home/apt              3                 1
## 5893               Queens Entire home/apt              2                 1
## 5894            Manhattan    Private room              2                93
## 5895            Manhattan Entire home/apt              2                11
## 5896             Brooklyn Entire home/apt              5                24
## 5897            Manhattan    Private room              1               193
## 5898            Manhattan    Private room              2               262
## 5899             Brooklyn    Private room             12                 4
## 5900            Manhattan    Private room              1                73
## 5901            Manhattan Entire home/apt              3                10
## 5902            Manhattan    Private room              2                16
## 5903            Manhattan    Private room              1                 4
## 5904            Manhattan Entire home/apt              2                 3
## 5905             Brooklyn    Private room              2               139
## 5906             Brooklyn Entire home/apt              3                16
## 5907            Manhattan Entire home/apt             15                26
## 5908            Manhattan Entire home/apt              2                 2
## 5909            Manhattan Entire home/apt              3                 2
## 5910             Brooklyn    Private room              5                 1
## 5911             Brooklyn    Private room              1                 1
## 5912            Manhattan    Private room              2               248
## 5913             Brooklyn    Private room             25                10
## 5914            Manhattan Entire home/apt             30                 9
## 5915            Manhattan Entire home/apt              4               149
## 5916             Brooklyn    Private room              2               132
## 5917             Brooklyn Entire home/apt             30                 7
## 5918             Brooklyn Entire home/apt              1                 1
## 5919            Manhattan    Private room              3                 8
## 5920             Brooklyn    Private room              9                 2
## 5921               Queens    Private room              1                 2
## 5922            Manhattan    Private room              2                15
## 5923             Brooklyn Entire home/apt             15                 1
## 5924            Manhattan    Private room             30                19
## 5925            Manhattan    Private room              3               186
## 5926             Brooklyn    Private room              2                45
## 5927             Brooklyn Entire home/apt              5                 1
## 5928               Queens Entire home/apt              7               105
## 5929             Brooklyn    Private room             20                 2
## 5930               Queens    Private room              7                 4
## 5931               Queens    Private room              6                17
## 5932             Brooklyn Entire home/apt              5                48
## 5933            Manhattan Entire home/apt              3               103
## 5934            Manhattan Entire home/apt              1               121
## 5935             Brooklyn Entire home/apt              1                 9
## 5936             Brooklyn    Private room              2                32
## 5937             Brooklyn    Private room              1                 1
## 5938             Brooklyn    Private room              5               107
## 5939             Brooklyn Entire home/apt              4                14
## 5940             Brooklyn    Private room              2                 8
## 5941            Manhattan    Private room              1               102
## 5942            Manhattan Entire home/apt              3                42
## 5943               Queens    Private room              3                 3
## 5944               Queens    Private room              1                28
## 5945            Manhattan Entire home/apt              2                23
## 5946            Manhattan Entire home/apt              6                13
## 5947            Manhattan Entire home/apt              1                 2
## 5948            Manhattan    Private room             20                 2
## 5949            Manhattan    Private room             17                24
## 5950            Manhattan Entire home/apt              1                 5
## 5951             Brooklyn Entire home/apt              3                47
## 5952            Manhattan Entire home/apt              1                14
## 5953             Brooklyn Entire home/apt              4               123
## 5954             Brooklyn    Private room              3               125
## 5955             Brooklyn    Private room              7                 2
## 5956            Manhattan Entire home/apt              6                11
## 5957             Brooklyn Entire home/apt              4                27
## 5958            Manhattan    Private room              1                39
## 5959             Brooklyn    Private room              1                 8
## 5960             Brooklyn Entire home/apt              5                26
## 5961            Manhattan Entire home/apt              4                 2
## 5962            Manhattan    Private room              1                 1
## 5963            Manhattan Entire home/apt              1                 2
## 5964             Brooklyn Entire home/apt             30                16
## 5965             Brooklyn Entire home/apt              5                12
## 5966            Manhattan    Private room              1                41
## 5967            Manhattan    Private room              2               151
## 5968            Manhattan Entire home/apt              1                 1
## 5969             Brooklyn    Private room              3                50
## 5970            Manhattan Entire home/apt             30                 2
## 5971            Manhattan Entire home/apt              2                49
## 5972             Brooklyn    Private room              2                 6
## 5973               Queens Entire home/apt              1               186
## 5974             Brooklyn Entire home/apt              2               145
## 5975            Manhattan Entire home/apt              1                 3
## 5976             Brooklyn Entire home/apt             30                 2
## 5977            Manhattan    Private room              1                 1
## 5978                Bronx    Private room             28                15
## 5979             Brooklyn Entire home/apt              5                11
## 5980            Manhattan Entire home/apt             30                10
## 5981            Manhattan Entire home/apt             30                39
## 5982             Brooklyn    Private room              3                 3
## 5983            Manhattan Entire home/apt             30                 2
## 5984            Manhattan Entire home/apt              2                 3
## 5985            Manhattan    Private room              2               188
## 5986             Brooklyn Entire home/apt              2                20
## 5987            Manhattan    Private room             30                37
## 5988               Queens Entire home/apt              2                 2
## 5989            Manhattan Entire home/apt             10                12
## 5990            Manhattan Entire home/apt              2                11
## 5991            Manhattan Entire home/apt              2                22
## 5992            Manhattan Entire home/apt              4                15
## 5993             Brooklyn Entire home/apt              2               186
## 5994             Brooklyn Entire home/apt              3                 5
## 5995            Manhattan Entire home/apt              3                 9
## 5996            Manhattan Entire home/apt             30                 5
## 5997            Manhattan Entire home/apt             30                 3
## 5998               Queens    Private room              1                55
## 5999            Manhattan Entire home/apt             30                 2
## 6000             Brooklyn    Private room             14                 2
## 6001             Brooklyn Entire home/apt              3               125
## 6002             Brooklyn    Private room              4                 1
## 6003            Manhattan Entire home/apt             30                 4
## 6004            Manhattan    Private room              3                 6
## 6005             Brooklyn    Private room             13                 8
## 6006             Brooklyn    Private room              2                50
## 6007            Manhattan Entire home/apt             10                29
## 6008               Queens    Private room              4                21
## 6009             Brooklyn Entire home/apt              2                 8
## 6010            Manhattan Entire home/apt              2                16
## 6011            Manhattan Entire home/apt              5                 2
## 6012             Brooklyn    Private room              5                47
## 6013             Brooklyn    Private room              3                 5
## 6014             Brooklyn Entire home/apt             10                 1
## 6015             Brooklyn    Private room              1                 1
## 6016             Brooklyn Entire home/apt              2                 3
## 6017             Brooklyn    Private room              1                 7
## 6018            Manhattan Entire home/apt             30                 8
## 6019            Manhattan Entire home/apt              3                 7
## 6020            Manhattan    Private room              4                 2
## 6021            Manhattan    Private room              3                23
## 6022               Queens Entire home/apt              2                58
## 6023            Manhattan     Shared room              2               134
## 6024             Brooklyn Entire home/apt              7                 3
## 6025             Brooklyn Entire home/apt              3                14
## 6026             Brooklyn Entire home/apt              1                 1
## 6027            Manhattan    Private room              2                 5
## 6028             Brooklyn Entire home/apt              3                18
## 6029             Brooklyn    Private room              4                 3
## 6030            Manhattan Entire home/apt              3               130
## 6031            Manhattan    Private room              1                 5
## 6032             Brooklyn    Private room              4                 6
## 6033             Brooklyn Entire home/apt             14                33
## 6034            Manhattan Entire home/apt              2                11
## 6035             Brooklyn    Private room              5                 1
## 6036            Manhattan Entire home/apt             25                16
## 6037             Brooklyn    Private room              1                58
## 6038               Queens Entire home/apt              1                 3
## 6039             Brooklyn    Private room              2                39
## 6040            Manhattan    Private room              1                 9
## 6041            Manhattan    Private room              1                39
## 6042            Manhattan    Private room              1                34
## 6043             Brooklyn    Private room              1                 1
## 6044             Brooklyn    Private room              4                 2
## 6045            Manhattan    Private room              5                 7
## 6046            Manhattan    Private room              1                 1
## 6047            Manhattan    Private room              1                 1
## 6048               Queens Entire home/apt             14                 8
## 6049            Manhattan Entire home/apt              1                 1
## 6050            Manhattan Entire home/apt              2                 6
## 6051            Manhattan Entire home/apt              3                 7
## 6052             Brooklyn Entire home/apt              1                44
## 6053             Brooklyn    Private room              4                19
## 6054             Brooklyn    Private room              4                13
## 6055            Manhattan Entire home/apt             10                 4
## 6056            Manhattan Entire home/apt             30                 8
## 6057             Brooklyn Entire home/apt              5                 2
## 6058            Manhattan    Private room              1               142
## 6059             Brooklyn Entire home/apt              1                23
## 6060             Brooklyn    Private room              1                 1
## 6061             Brooklyn Entire home/apt              2                 1
## 6062             Brooklyn Entire home/apt              2                 9
## 6063             Brooklyn Entire home/apt              2                 6
## 6064            Manhattan Entire home/apt             30                 6
## 6065             Brooklyn Entire home/apt              7                 2
## 6066               Queens Entire home/apt              7                 5
## 6067             Brooklyn Entire home/apt              7                53
## 6068             Brooklyn Entire home/apt              2                15
## 6069             Brooklyn    Private room              3                 1
## 6070               Queens Entire home/apt              2               129
## 6071            Manhattan    Private room              1                24
## 6072             Brooklyn Entire home/apt              3                 1
## 6073             Brooklyn Entire home/apt              1                 7
## 6074             Brooklyn    Private room             10                 4
## 6075             Brooklyn Entire home/apt              3                30
## 6076            Manhattan Entire home/apt              5                 3
## 6077            Manhattan Entire home/apt              2                47
## 6078            Manhattan    Private room              2               157
## 6079             Brooklyn Entire home/apt              3                73
## 6080             Brooklyn Entire home/apt              2                75
## 6081            Manhattan Entire home/apt              1                 5
## 6082             Brooklyn Entire home/apt              2                23
## 6083            Manhattan Entire home/apt              1                 2
## 6084             Brooklyn Entire home/apt              1                 3
## 6085               Queens    Private room              3                12
## 6086             Brooklyn    Private room              1               168
## 6087            Manhattan    Private room              1                51
## 6088             Brooklyn    Private room             22                16
## 6089             Brooklyn Entire home/apt              6                 1
## 6090             Brooklyn    Private room              2                 6
## 6091             Brooklyn    Private room             30                 3
## 6092             Brooklyn    Private room              1                10
## 6093            Manhattan Entire home/apt              2                 8
## 6094            Manhattan Entire home/apt              3                 2
## 6095            Manhattan    Private room              2                88
## 6096             Brooklyn Entire home/apt              5                 9
## 6097             Brooklyn Entire home/apt              4                 9
## 6098               Queens    Private room              2               116
## 6099             Brooklyn Entire home/apt              3               209
## 6100             Brooklyn    Private room              1                 2
## 6101            Manhattan Entire home/apt              5               131
## 6102             Brooklyn Entire home/apt              6                 8
## 6103            Manhattan Entire home/apt              1                49
## 6104            Manhattan Entire home/apt             31                 1
## 6105            Manhattan Entire home/apt              4                 3
## 6106            Manhattan Entire home/apt              4                40
## 6107            Manhattan Entire home/apt              2                28
## 6108               Queens Entire home/apt              1                38
## 6109            Manhattan    Private room              4                19
## 6110            Manhattan    Private room              7                27
## 6111             Brooklyn    Private room              1                 2
## 6112               Queens    Private room              1               141
## 6113             Brooklyn    Private room             30                11
## 6114               Queens    Private room              2                 2
## 6115            Manhattan Entire home/apt              4                 7
## 6116             Brooklyn    Private room              3                23
## 6117            Manhattan    Private room             30                19
## 6118             Brooklyn Entire home/apt              2               166
## 6119            Manhattan Entire home/apt              1                 1
## 6120            Manhattan Entire home/apt             14                 3
## 6121               Queens    Private room             15                 2
## 6122            Manhattan    Private room              5                 8
## 6123             Brooklyn Entire home/apt              3                 6
## 6124            Manhattan Entire home/apt              1                 4
## 6125               Queens Entire home/apt              6                15
## 6126            Manhattan Entire home/apt             30                11
## 6127                Bronx    Private room             14                 5
## 6128            Manhattan Entire home/apt             30                14
## 6129            Manhattan Entire home/apt             30                12
## 6130             Brooklyn Entire home/apt              2                 3
## 6131             Brooklyn    Private room             15                 1
## 6132             Brooklyn Entire home/apt              3                31
## 6133             Brooklyn    Private room              1                 8
## 6134             Brooklyn Entire home/apt              3                98
## 6135             Brooklyn    Private room              4                42
## 6136            Manhattan Entire home/apt              5                14
## 6137             Brooklyn Entire home/apt              1                89
## 6138            Manhattan Entire home/apt             30                 5
## 6139             Brooklyn Entire home/apt              6                29
## 6140            Manhattan    Private room             20                13
## 6141            Manhattan Entire home/apt              1                 1
## 6142            Manhattan    Private room              1                 1
## 6143            Manhattan Entire home/apt              2                11
## 6144            Manhattan Entire home/apt              1               171
## 6145             Brooklyn Entire home/apt              2                 3
## 6146             Brooklyn    Private room              2                 9
## 6147            Manhattan Entire home/apt             30                20
## 6148             Brooklyn    Private room              1                55
## 6149             Brooklyn    Private room              3                29
## 6150            Manhattan    Private room              1               318
## 6151            Manhattan    Private room              7                25
## 6152             Brooklyn    Private room              3                32
## 6153             Brooklyn    Private room              1                91
## 6154            Manhattan Entire home/apt              1                31
## 6155            Manhattan Entire home/apt              1                 1
## 6156             Brooklyn Entire home/apt              3                91
## 6157            Manhattan Entire home/apt              2                 7
## 6158             Brooklyn    Private room              3                 1
## 6159            Manhattan Entire home/apt            198               163
## 6160             Brooklyn    Private room              2                16
## 6161               Queens Entire home/apt             30                15
## 6162            Manhattan Entire home/apt              2               168
## 6163            Manhattan Entire home/apt              1                17
## 6164             Brooklyn    Private room              4               180
## 6165            Manhattan Entire home/apt             30                 5
## 6166            Manhattan Entire home/apt              4                 9
## 6167             Brooklyn Entire home/apt              2                34
## 6168            Manhattan    Private room              3                36
## 6169               Queens    Private room              7                56
## 6170            Manhattan Entire home/apt              2                14
## 6171             Brooklyn Entire home/apt              3                32
## 6172            Manhattan Entire home/apt             20                 5
## 6173            Manhattan    Private room              1               203
## 6174            Manhattan    Private room              3               176
## 6175            Manhattan    Private room              2               171
## 6176             Brooklyn    Private room              1                44
## 6177             Brooklyn Entire home/apt              2               149
## 6178               Queens Entire home/apt              2               123
## 6179            Manhattan Entire home/apt              3                38
## 6180             Brooklyn Entire home/apt              2               222
## 6181            Manhattan    Private room              1               277
## 6182            Manhattan Entire home/apt              3                57
## 6183            Manhattan Entire home/apt            100                 5
## 6184                Bronx Entire home/apt              2                11
## 6185                Bronx Entire home/apt              1                15
## 6186            Manhattan    Private room              1                 9
## 6187               Queens     Shared room              4                 1
## 6188            Manhattan Entire home/apt              3                 4
## 6189                Bronx    Private room              1                 2
## 6190             Brooklyn Entire home/apt              3                51
## 6191               Queens    Private room              7                30
## 6192               Queens     Shared room              4                45
## 6193            Manhattan    Private room              4               117
## 6194            Manhattan    Private room              4                99
## 6195        Staten Island Entire home/apt              2               196
## 6196            Manhattan    Private room              2                80
## 6197             Brooklyn    Private room             30                 3
## 6198            Manhattan Entire home/apt              1                 1
## 6199             Brooklyn Entire home/apt              2                 4
## 6200             Brooklyn    Private room              4                33
## 6201            Manhattan Entire home/apt              3                52
## 6202            Manhattan Entire home/apt              7                10
## 6203               Queens Entire home/apt              3                66
## 6204            Manhattan    Private room              3                70
## 6205             Brooklyn    Private room              4                 1
## 6206             Brooklyn    Private room              1                37
## 6207             Brooklyn Entire home/apt             30                 2
## 6208            Manhattan Entire home/apt             14                26
## 6209            Manhattan Entire home/apt              5                23
## 6210               Queens    Private room              5                46
## 6211            Manhattan    Private room              4                79
## 6212            Manhattan Entire home/apt              4                17
## 6213             Brooklyn Entire home/apt              7                12
## 6214             Brooklyn    Private room             14                 1
## 6215             Brooklyn    Private room              1                49
## 6216               Queens Entire home/apt              3                36
## 6217            Manhattan    Private room              5                 2
## 6218            Manhattan Entire home/apt              1               168
## 6219            Manhattan Entire home/apt              1                 8
## 6220             Brooklyn    Private room              1                43
## 6221             Brooklyn Entire home/apt             14                20
## 6222            Manhattan Entire home/apt              1                 9
## 6223               Queens    Private room              1                 3
## 6224            Manhattan    Private room              3                28
## 6225             Brooklyn    Private room              1                24
## 6226               Queens    Private room              5                 5
## 6227             Brooklyn    Private room             10                27
## 6228            Manhattan Entire home/apt             14                 1
## 6229             Brooklyn    Private room              3                15
## 6230               Queens    Private room              3                 5
## 6231            Manhattan Entire home/apt              3                75
## 6232            Manhattan Entire home/apt              4               147
## 6233            Manhattan Entire home/apt              2                25
## 6234            Manhattan Entire home/apt              3                13
## 6235             Brooklyn Entire home/apt              7                56
## 6236             Brooklyn Entire home/apt              6                13
## 6237             Brooklyn Entire home/apt              7                10
## 6238               Queens Entire home/apt              2                94
## 6239             Brooklyn    Private room              1                 8
## 6240               Queens    Private room              1                95
## 6241             Brooklyn Entire home/apt              1                 2
## 6242             Brooklyn Entire home/apt              2                59
## 6243            Manhattan Entire home/apt             21                45
## 6244             Brooklyn Entire home/apt              2                67
## 6245            Manhattan Entire home/apt             30                 6
## 6246             Brooklyn    Private room              2                49
## 6247             Brooklyn Entire home/apt              3                87
## 6248             Brooklyn Entire home/apt              3               198
## 6249            Manhattan Entire home/apt             30                13
## 6250            Manhattan Entire home/apt             30                15
## 6251               Queens    Private room              3                95
## 6252             Brooklyn    Private room             14                43
## 6253            Manhattan    Private room              3                43
## 6254            Manhattan    Private room             30                 1
## 6255             Brooklyn Entire home/apt             31                 1
## 6256            Manhattan    Private room              2                22
## 6257            Manhattan    Private room              4                36
## 6258            Manhattan Entire home/apt              3                21
## 6259            Manhattan Entire home/apt              4                22
## 6260                Bronx Entire home/apt              2                45
## 6261             Brooklyn Entire home/apt              2                 8
## 6262            Manhattan     Shared room              1                29
## 6263            Manhattan    Private room              3                 1
## 6264            Manhattan    Private room              1                14
## 6265            Manhattan    Private room              3               153
## 6266             Brooklyn Entire home/apt              5                22
## 6267             Brooklyn Entire home/apt              4               119
## 6268             Brooklyn    Private room              1                33
## 6269            Manhattan Entire home/apt              3                85
## 6270            Manhattan Entire home/apt             30                17
## 6271             Brooklyn    Private room              2                14
## 6272            Manhattan Entire home/apt              3                27
## 6273             Brooklyn    Private room              1               175
## 6274            Manhattan    Private room              1                 1
## 6275            Manhattan    Private room              1               307
## 6276            Manhattan    Private room              4                80
## 6277             Brooklyn    Private room              1               155
## 6278            Manhattan Entire home/apt              4                72
## 6279             Brooklyn    Private room              1                 3
## 6280            Manhattan Entire home/apt              1                62
## 6281             Brooklyn    Private room              7                13
## 6282            Manhattan Entire home/apt              3                26
## 6283            Manhattan    Private room             10                25
## 6284            Manhattan Entire home/apt              3                 7
## 6285               Queens Entire home/apt             30                10
## 6286             Brooklyn    Private room              7                 1
## 6287            Manhattan Entire home/apt              3               211
## 6288             Brooklyn Entire home/apt              4                 3
## 6289             Brooklyn    Private room              2                39
## 6290            Manhattan Entire home/apt             30                16
## 6291            Manhattan Entire home/apt              4                29
## 6292            Manhattan Entire home/apt              5                 1
## 6293            Manhattan Entire home/apt             30                12
## 6294               Queens    Private room              1                12
## 6295             Brooklyn Entire home/apt              5                 4
## 6296            Manhattan    Private room              7                18
## 6297               Queens    Private room              3                 4
## 6298             Brooklyn    Private room              1                 1
## 6299             Brooklyn    Private room              2                19
## 6300             Brooklyn Entire home/apt              4                16
## 6301             Brooklyn    Private room              7                 1
## 6302             Brooklyn Entire home/apt              1                63
## 6303             Brooklyn Entire home/apt              7                 1
## 6304               Queens Entire home/apt              5                31
## 6305            Manhattan Entire home/apt              4                15
## 6306             Brooklyn Entire home/apt              4                51
## 6307            Manhattan Entire home/apt              2                11
## 6308               Queens Entire home/apt             14                35
## 6309            Manhattan Entire home/apt              1                 3
## 6310             Brooklyn Entire home/apt              5                51
## 6311               Queens    Private room              1               430
## 6312             Brooklyn Entire home/apt              2                 3
## 6313             Brooklyn Entire home/apt              2                43
## 6314            Manhattan Entire home/apt             10                 7
## 6315            Manhattan    Private room              2                78
## 6316            Manhattan    Private room              1                38
## 6317            Manhattan    Private room              7               167
## 6318             Brooklyn    Private room              1               104
## 6319            Manhattan Entire home/apt              7                21
## 6320             Brooklyn    Private room             28                20
## 6321             Brooklyn    Private room              2                 3
## 6322             Brooklyn Entire home/apt              5                 8
## 6323             Brooklyn Entire home/apt             21                 3
## 6324            Manhattan    Private room              2                 8
## 6325            Manhattan Entire home/apt              2                 5
## 6326            Manhattan Entire home/apt              2                15
## 6327            Manhattan Entire home/apt              3               126
## 6328            Manhattan Entire home/apt              3                 2
## 6329            Manhattan Entire home/apt              3                12
## 6330             Brooklyn Entire home/apt              2                 5
## 6331            Manhattan    Private room              1                61
## 6332             Brooklyn Entire home/apt              6                21
## 6333            Manhattan Entire home/apt              3                 8
## 6334            Manhattan Entire home/apt              3                31
## 6335             Brooklyn Entire home/apt              3                 5
## 6336            Manhattan    Private room              1                28
## 6337            Manhattan    Private room              1               205
## 6338             Brooklyn    Private room              2                21
## 6339               Queens Entire home/apt             30                 3
## 6340            Manhattan Entire home/apt             30               119
## 6341            Manhattan Entire home/apt              6                 5
## 6342             Brooklyn Entire home/apt              5                 1
## 6343             Brooklyn    Private room              2                 1
## 6344             Brooklyn    Private room             11                21
## 6345             Brooklyn    Private room              4                38
## 6346            Manhattan Entire home/apt              3                 3
## 6347               Queens Entire home/apt              2                19
## 6348            Manhattan Entire home/apt             90                 7
## 6349               Queens    Private room              6                 5
## 6350             Brooklyn    Private room              1                 1
## 6351             Brooklyn Entire home/apt              7                11
## 6352             Brooklyn    Private room              1                35
## 6353            Manhattan    Private room              1               209
## 6354            Manhattan    Private room              1               194
## 6355            Manhattan Entire home/apt              5                63
## 6356             Brooklyn    Private room              1                 3
## 6357             Brooklyn    Private room              2                77
## 6358            Manhattan Entire home/apt            100                 2
## 6359             Brooklyn    Private room              1                 3
## 6360             Brooklyn    Private room              5                20
## 6361            Manhattan Entire home/apt             30                13
## 6362             Brooklyn Entire home/apt              3                 1
## 6363            Manhattan    Private room             10                14
## 6364             Brooklyn Entire home/apt              3                 2
## 6365             Brooklyn Entire home/apt              3                45
## 6366             Brooklyn    Private room              3                82
## 6367            Manhattan Entire home/apt              2                 1
## 6368            Manhattan Entire home/apt              4                 4
## 6369            Manhattan Entire home/apt              2                 2
## 6370             Brooklyn Entire home/apt              3               138
## 6371            Manhattan Entire home/apt              4                 1
## 6372             Brooklyn Entire home/apt              3                 3
## 6373             Brooklyn Entire home/apt              5                17
## 6374            Manhattan Entire home/apt              5                13
## 6375            Manhattan Entire home/apt              4                10
## 6376             Brooklyn Entire home/apt              2                 1
## 6377        Staten Island Entire home/apt              5                16
## 6378            Manhattan    Private room              4                56
## 6379             Brooklyn Entire home/apt              2                62
## 6380            Manhattan Entire home/apt             30                 5
## 6381               Queens    Private room              1                90
## 6382            Manhattan    Private room              1                16
## 6383            Manhattan Entire home/apt              2                 2
## 6384               Queens    Private room              1                27
## 6385            Manhattan Entire home/apt              3               150
## 6386             Brooklyn Entire home/apt              1                49
## 6387             Brooklyn    Private room              2                79
## 6388            Manhattan Entire home/apt             10               169
## 6389             Brooklyn Entire home/apt              2                47
## 6390             Brooklyn Entire home/apt             30                84
## 6391            Manhattan Entire home/apt             30                32
## 6392             Brooklyn Entire home/apt              6                10
## 6393             Brooklyn    Private room              5                66
## 6394             Brooklyn    Private room              3               118
## 6395             Brooklyn Entire home/apt             15                 6
## 6396               Queens    Private room              2                 2
## 6397             Brooklyn    Private room              3                19
## 6398            Manhattan Entire home/apt             30                 3
## 6399            Manhattan Entire home/apt              8                 9
## 6400            Manhattan    Private room              7                 1
## 6401            Manhattan    Private room              2               195
## 6402            Manhattan    Private room              2               170
## 6403            Manhattan Entire home/apt              3                 1
## 6404             Brooklyn Entire home/apt              2                 1
## 6405            Manhattan Entire home/apt              5                22
## 6406            Manhattan    Private room              1                21
## 6407             Brooklyn Entire home/apt              2                12
## 6408             Brooklyn Entire home/apt              4                77
## 6409            Manhattan    Private room              2                 2
## 6410            Manhattan    Private room              3               124
## 6411             Brooklyn    Private room             21                14
## 6412            Manhattan Entire home/apt              4                 8
## 6413             Brooklyn Entire home/apt             21                12
## 6414             Brooklyn    Private room              1                 1
## 6415             Brooklyn Entire home/apt              2                 3
## 6416             Brooklyn    Private room              2                14
## 6417             Brooklyn Entire home/apt             30                 7
## 6418            Manhattan Entire home/apt              5                66
## 6419            Manhattan Entire home/apt             12                 1
## 6420             Brooklyn    Private room              1                 4
## 6421            Manhattan Entire home/apt              2                24
## 6422             Brooklyn Entire home/apt              3                24
## 6423            Manhattan Entire home/apt              1                 3
## 6424             Brooklyn    Private room              2                21
## 6425            Manhattan     Shared room              1                49
## 6426               Queens    Private room              1               243
## 6427                Bronx    Private room              3                15
## 6428            Manhattan    Private room              1                15
## 6429               Queens    Private room              4                15
## 6430            Manhattan Entire home/apt              3                 2
## 6431             Brooklyn Entire home/apt              2                 1
## 6432            Manhattan Entire home/apt              7                 2
## 6433             Brooklyn Entire home/apt              3               109
## 6434             Brooklyn    Private room              5               115
## 6435            Manhattan    Private room              2                 2
## 6436            Manhattan Entire home/apt             30                 3
## 6437            Manhattan    Private room              1               107
## 6438             Brooklyn Entire home/apt              2                 9
## 6439            Manhattan Entire home/apt              1               210
## 6440             Brooklyn Entire home/apt              1               111
## 6441             Brooklyn    Private room              1                 2
## 6442             Brooklyn Entire home/apt             30                 9
## 6443            Manhattan    Private room              2                 8
## 6444            Manhattan    Private room              1                 8
## 6445               Queens    Private room              2                20
## 6446            Manhattan Entire home/apt              5                 7
## 6447             Brooklyn    Private room              1                 1
## 6448             Brooklyn Entire home/apt              2                 8
## 6449            Manhattan Entire home/apt              6                 2
## 6450             Brooklyn Entire home/apt              3               193
## 6451            Manhattan Entire home/apt             30                 7
## 6452             Brooklyn Entire home/apt              2                95
## 6453             Brooklyn Entire home/apt             30                21
## 6454            Manhattan Entire home/apt              6                25
## 6455            Manhattan Entire home/apt              2                13
## 6456             Brooklyn Entire home/apt              2               177
## 6457             Brooklyn    Private room              1                12
## 6458            Manhattan Entire home/apt              3                 1
## 6459             Brooklyn    Private room             12                 1
## 6460            Manhattan Entire home/apt              2                98
## 6461            Manhattan    Private room              1                46
## 6462             Brooklyn    Private room              3                59
## 6463            Manhattan    Private room              1                10
## 6464             Brooklyn    Private room              1                 2
## 6465               Queens    Private room              1               214
## 6466            Manhattan Entire home/apt              2                84
## 6467               Queens    Private room              5                13
## 6468             Brooklyn Entire home/apt              2                62
## 6469             Brooklyn    Private room             15                 7
## 6470             Brooklyn    Private room             30                 9
## 6471            Manhattan Entire home/apt              6                 1
## 6472            Manhattan Entire home/apt             30                13
## 6473             Brooklyn Entire home/apt              5                 5
## 6474            Manhattan Entire home/apt              2               168
## 6475            Manhattan    Private room              4                13
## 6476                Bronx    Private room              2               106
## 6477            Manhattan Entire home/apt             30                20
## 6478             Brooklyn    Private room              1                 1
## 6479            Manhattan    Private room              1                 1
## 6480             Brooklyn    Private room              4                 2
## 6481            Manhattan Entire home/apt              3               104
## 6482             Brooklyn Entire home/apt              4                24
## 6483            Manhattan Entire home/apt              2                10
## 6484            Manhattan Entire home/apt             30                13
## 6485             Brooklyn    Private room              1               199
## 6486             Brooklyn Entire home/apt              1                 1
## 6487               Queens    Private room              1                69
## 6488             Brooklyn Entire home/apt              1               100
## 6489             Brooklyn Entire home/apt              2                 8
## 6490            Manhattan    Private room             10                56
## 6491             Brooklyn Entire home/apt              2                 4
## 6492             Brooklyn    Private room              1                28
## 6493            Manhattan Entire home/apt              2                16
## 6494            Manhattan Entire home/apt              2                 3
## 6495            Manhattan    Private room              1                91
## 6496             Brooklyn    Private room             30                 1
## 6497             Brooklyn Entire home/apt              2               233
## 6498             Brooklyn Entire home/apt              2                73
## 6499               Queens    Private room              6                 2
## 6500               Queens Entire home/apt              7                 1
## 6501            Manhattan    Private room              7                 3
## 6502            Manhattan    Private room              1               325
## 6503             Brooklyn Entire home/apt             15                 2
## 6504               Queens    Private room              2               132
## 6505             Brooklyn Entire home/apt              5                 2
## 6506            Manhattan Entire home/apt             30                10
## 6507             Brooklyn Entire home/apt              2                60
## 6508             Brooklyn    Private room              4               199
## 6509            Manhattan Entire home/apt              4               137
## 6510            Manhattan Entire home/apt              7                14
## 6511             Brooklyn Entire home/apt              4                 1
## 6512            Manhattan    Private room            365                 7
## 6513            Manhattan Entire home/apt             30                 4
## 6514             Brooklyn Entire home/apt              2               135
## 6515             Brooklyn Entire home/apt              2                 3
## 6516            Manhattan    Private room              2               156
## 6517            Manhattan    Private room              3               139
## 6518               Queens    Private room              2                49
## 6519             Brooklyn    Private room              2                91
## 6520             Brooklyn Entire home/apt              2                17
## 6521            Manhattan Entire home/apt             30                 9
## 6522             Brooklyn Entire home/apt             30               136
## 6523             Brooklyn Entire home/apt             14                23
## 6524             Brooklyn Entire home/apt              1                 3
## 6525             Brooklyn Entire home/apt              4                21
## 6526             Brooklyn    Private room              1                 2
## 6527             Brooklyn Entire home/apt             30                 1
## 6528               Queens    Private room              1                76
## 6529            Manhattan Entire home/apt             30                18
## 6530               Queens    Private room              2                81
## 6531             Brooklyn Entire home/apt              7                 1
## 6532            Manhattan Entire home/apt              6                35
## 6533            Manhattan Entire home/apt             30                 1
## 6534               Queens Entire home/apt              1                72
## 6535            Manhattan Entire home/apt              1                 5
## 6536            Manhattan    Private room              1                 2
## 6537             Brooklyn    Private room              1                49
## 6538            Manhattan Entire home/apt              5                28
## 6539            Manhattan Entire home/apt              1                15
## 6540             Brooklyn    Private room              2                 4
## 6541             Brooklyn Entire home/apt              4               106
## 6542             Brooklyn Entire home/apt              3               194
## 6543            Manhattan Entire home/apt             30                43
## 6544            Manhattan    Private room              2                71
## 6545             Brooklyn    Private room              1                 1
## 6546            Manhattan Entire home/apt              2                98
## 6547             Brooklyn Entire home/apt             30                 1
## 6548             Brooklyn Entire home/apt              1                 6
## 6549            Manhattan Entire home/apt             30                14
## 6550            Manhattan Entire home/apt             30                11
## 6551             Brooklyn Entire home/apt             14                14
## 6552             Brooklyn    Private room              1                54
## 6553             Brooklyn    Private room              2                43
## 6554            Manhattan Entire home/apt              7                12
## 6555            Manhattan    Private room              2                20
## 6556            Manhattan Entire home/apt             30                15
## 6557                Bronx Entire home/apt              4                 6
## 6558             Brooklyn Entire home/apt              3                 7
## 6559             Brooklyn Entire home/apt              2                83
## 6560            Manhattan Entire home/apt              5                 5
## 6561            Manhattan    Private room              2                 5
## 6562             Brooklyn Entire home/apt              1                68
## 6563            Manhattan Entire home/apt              1                12
## 6564             Brooklyn Entire home/apt              3                17
## 6565            Manhattan Entire home/apt              3                57
## 6566             Brooklyn Entire home/apt              4               142
## 6567               Queens    Private room              1               148
## 6568             Brooklyn     Shared room              2                 2
## 6569             Brooklyn    Private room              7                 1
## 6570            Manhattan Entire home/apt              3                76
## 6571               Queens Entire home/apt              4                 6
## 6572             Brooklyn    Private room             30                 1
## 6573             Brooklyn    Private room             30                 2
## 6574                Bronx    Private room              2                25
## 6575            Manhattan    Private room             30                57
## 6576             Brooklyn Entire home/apt              3                 8
## 6577            Manhattan    Private room              2                18
## 6578             Brooklyn    Private room              2               186
## 6579             Brooklyn    Private room              4                49
## 6580            Manhattan Entire home/apt              2                64
## 6581            Manhattan    Private room              5                 4
## 6582            Manhattan    Private room              1                 1
## 6583             Brooklyn    Private room              1                 1
## 6584             Brooklyn Entire home/apt              1                75
## 6585             Brooklyn Entire home/apt              3               123
## 6586               Queens Entire home/apt              2                97
## 6587            Manhattan Entire home/apt              2                53
## 6588             Brooklyn Entire home/apt              3                72
## 6589             Brooklyn Entire home/apt             10                 3
## 6590            Manhattan Entire home/apt              1                 1
## 6591            Manhattan Entire home/apt              2                 3
## 6592            Manhattan    Private room              1               134
## 6593             Brooklyn    Private room             15                21
## 6594            Manhattan Entire home/apt              3                13
## 6595             Brooklyn    Private room              3                 8
## 6596            Manhattan Entire home/apt              5                 2
## 6597            Manhattan Entire home/apt              2                 9
## 6598            Manhattan Entire home/apt             20                 2
## 6599            Manhattan Entire home/apt              3                 7
## 6600            Manhattan    Private room              6                62
## 6601            Manhattan Entire home/apt              1                50
## 6602             Brooklyn Entire home/apt              3                16
## 6603            Manhattan Entire home/apt              1                 8
## 6604             Brooklyn Entire home/apt              7                17
## 6605            Manhattan Entire home/apt              3                58
## 6606            Manhattan Entire home/apt             14                 6
## 6607             Brooklyn    Private room              2                35
## 6608            Manhattan Entire home/apt             30                 9
## 6609             Brooklyn    Private room              1                75
## 6610             Brooklyn    Private room              2                 5
## 6611            Manhattan Entire home/apt             30                11
## 6612             Brooklyn    Private room              4                 8
## 6613            Manhattan    Private room              3                33
## 6614             Brooklyn Entire home/apt              2               119
## 6615             Brooklyn Entire home/apt              3                17
## 6616            Manhattan    Private room              2               136
## 6617            Manhattan Entire home/apt              2                12
## 6618            Manhattan    Private room              7                 2
## 6619            Manhattan    Private room              4               109
## 6620            Manhattan     Shared room              1                 7
## 6621               Queens Entire home/apt              2                 6
## 6622             Brooklyn    Private room              1                 8
## 6623             Brooklyn Entire home/apt              5                 4
## 6624            Manhattan Entire home/apt              3                45
## 6625             Brooklyn    Private room              3                 4
## 6626             Brooklyn Entire home/apt              5               137
## 6627            Manhattan Entire home/apt              1               169
## 6628            Manhattan Entire home/apt              2                15
## 6629            Manhattan Entire home/apt              2                32
## 6630            Manhattan Entire home/apt              3               118
## 6631             Brooklyn Entire home/apt              1               282
## 6632             Brooklyn Entire home/apt             25                24
## 6633            Manhattan    Private room              1                27
## 6634               Queens    Private room              4                 1
## 6635            Manhattan    Private room             30                 8
## 6636             Brooklyn    Private room              2                 3
## 6637             Brooklyn    Private room             40                28
## 6638             Brooklyn Entire home/apt              2                 1
## 6639             Brooklyn    Private room              2                 5
## 6640            Manhattan Entire home/apt              3                 2
## 6641             Brooklyn    Private room              2                13
## 6642               Queens    Private room             30                 4
## 6643            Manhattan     Shared room              3                38
## 6644               Queens    Private room             30                 5
## 6645             Brooklyn    Private room              3                31
## 6646             Brooklyn Entire home/apt              3                16
## 6647            Manhattan    Private room              2                16
## 6648            Manhattan    Private room              1               131
## 6649             Brooklyn Entire home/apt              1                45
## 6650             Brooklyn    Private room              1                 1
## 6651            Manhattan Entire home/apt             30                 7
## 6652            Manhattan    Private room              3                18
## 6653             Brooklyn    Private room             14                 7
## 6654            Manhattan    Private room              1                 3
## 6655               Queens Entire home/apt              1                 7
## 6656            Manhattan Entire home/apt              7                 1
## 6657             Brooklyn Entire home/apt              2                 9
## 6658             Brooklyn Entire home/apt              5                17
## 6659            Manhattan Entire home/apt              2               101
## 6660             Brooklyn Entire home/apt              3               134
## 6661            Manhattan    Private room              1               175
## 6662             Brooklyn Entire home/apt              1                76
## 6663             Brooklyn Entire home/apt              3               148
## 6664             Brooklyn    Private room              2                41
## 6665            Manhattan    Private room              4                 6
## 6666            Manhattan    Private room              3                32
## 6667            Manhattan Entire home/apt             30                 9
## 6668            Manhattan Entire home/apt              2                57
## 6669            Manhattan Entire home/apt              4                41
## 6670            Manhattan    Private room              2                 7
## 6671             Brooklyn Entire home/apt              2                 2
## 6672             Brooklyn Entire home/apt              5                 1
## 6673            Manhattan    Private room              1                 7
## 6674             Brooklyn Entire home/apt              3               140
## 6675            Manhattan Entire home/apt              4                56
## 6676            Manhattan Entire home/apt             30                14
## 6677            Manhattan    Private room              7                26
## 6678             Brooklyn    Private room             30                 3
## 6679             Brooklyn    Private room              4               165
## 6680            Manhattan     Shared room              2                12
## 6681             Brooklyn Entire home/apt             30                 5
## 6682             Brooklyn Entire home/apt              3                28
## 6683             Brooklyn    Private room              3                54
## 6684            Manhattan Entire home/apt              2               243
## 6685            Manhattan    Private room              2                11
## 6686             Brooklyn Entire home/apt              4                44
## 6687            Manhattan Entire home/apt             30                14
## 6688             Brooklyn Entire home/apt              7                 4
## 6689            Manhattan    Private room              5                56
## 6690            Manhattan Entire home/apt             30                 9
## 6691            Manhattan Entire home/apt              2                57
## 6692            Manhattan    Private room              5                62
## 6693             Brooklyn    Private room              3                 1
## 6694            Manhattan Entire home/apt              3                34
## 6695             Brooklyn    Private room             14                 6
## 6696             Brooklyn Entire home/apt              5                10
## 6697            Manhattan Entire home/apt              7                15
## 6698             Brooklyn Entire home/apt              2                35
## 6699            Manhattan Entire home/apt              3                51
## 6700             Brooklyn Entire home/apt              3                64
## 6701            Manhattan Entire home/apt              3                58
## 6702            Manhattan Entire home/apt              1               178
## 6703             Brooklyn Entire home/apt              6                 1
## 6704            Manhattan    Private room              1               151
## 6705            Manhattan    Private room              3                85
## 6706             Brooklyn Entire home/apt              3               146
## 6707               Queens    Private room              3                11
## 6708               Queens Entire home/apt              7                 3
## 6709             Brooklyn Entire home/apt              3                 1
## 6710             Brooklyn    Private room              4                15
## 6711            Manhattan    Private room              3                 3
## 6712             Brooklyn Entire home/apt              7                83
## 6713             Brooklyn Entire home/apt              3                21
## 6714            Manhattan Entire home/apt             90                 3
## 6715               Queens    Private room              1                20
## 6716            Manhattan    Private room              5                47
## 6717             Brooklyn Entire home/apt              2                 8
## 6718             Brooklyn Entire home/apt              5                 1
## 6719            Manhattan Entire home/apt             12                10
## 6720            Manhattan    Private room              1               155
## 6721             Brooklyn Entire home/apt             14                20
## 6722            Manhattan Entire home/apt              2                 3
## 6723            Manhattan    Private room              1                10
## 6724            Manhattan Entire home/apt              3               164
## 6725            Manhattan Entire home/apt              1                 1
## 6726             Brooklyn    Private room              2                40
## 6727            Manhattan Entire home/apt             30                 4
## 6728             Brooklyn Entire home/apt              2               107
## 6729             Brooklyn    Private room             10                 2
## 6730            Manhattan Entire home/apt              1                 3
## 6731            Manhattan Entire home/apt             30                 6
## 6732            Manhattan    Private room              1                17
## 6733             Brooklyn Entire home/apt              4                58
## 6734            Manhattan Entire home/apt              1               166
## 6735             Brooklyn Entire home/apt             30                 3
## 6736             Brooklyn Entire home/apt             30                 1
## 6737            Manhattan Entire home/apt             30                 3
## 6738               Queens    Private room              4               138
## 6739            Manhattan Entire home/apt              2                 6
## 6740             Brooklyn Entire home/apt              7                 1
## 6741             Brooklyn Entire home/apt              2               238
## 6742             Brooklyn    Private room              2                 3
## 6743             Brooklyn    Private room              3                 8
## 6744            Manhattan Entire home/apt              2                 3
## 6745            Manhattan Entire home/apt              3                13
## 6746            Manhattan Entire home/apt              7                 8
## 6747             Brooklyn Entire home/apt              5                11
## 6748            Manhattan Entire home/apt              5                15
## 6749            Manhattan Entire home/apt              2                 8
## 6750             Brooklyn Entire home/apt              1                 2
## 6751             Brooklyn    Private room             30                18
## 6752             Brooklyn    Private room              7                 1
## 6753            Manhattan    Private room              7                12
## 6754            Manhattan Entire home/apt              3                 9
## 6755               Queens    Private room              1                34
## 6756             Brooklyn Entire home/apt              4                67
## 6757            Manhattan    Private room              7                 3
## 6758            Manhattan Entire home/apt              4                38
## 6759             Brooklyn    Private room              3                20
## 6760             Brooklyn Entire home/apt              2               249
## 6761             Brooklyn    Private room              1                24
## 6762             Brooklyn Entire home/apt              2               232
## 6763             Brooklyn Entire home/apt             30                 1
## 6764               Queens Entire home/apt              2                 3
## 6765             Brooklyn    Private room              2                48
## 6766            Manhattan Entire home/apt              7                 6
## 6767            Manhattan    Private room              4                 2
## 6768            Manhattan    Private room              1                 6
## 6769             Brooklyn Entire home/apt              2                34
## 6770               Queens    Private room              2               175
## 6771                Bronx    Private room              3                11
## 6772            Manhattan    Private room             21                14
## 6773            Manhattan Entire home/apt             30                 3
## 6774            Manhattan Entire home/apt              2                21
## 6775            Manhattan Entire home/apt              1                 4
## 6776             Brooklyn Entire home/apt              3                82
## 6777            Manhattan Entire home/apt             30                17
## 6778            Manhattan Entire home/apt              4                 8
## 6779            Manhattan    Private room              2                58
## 6780               Queens    Private room              1               100
## 6781            Manhattan     Shared room              3               105
## 6782             Brooklyn Entire home/apt              3                 6
## 6783             Brooklyn Entire home/apt             10                 3
## 6784            Manhattan Entire home/apt              5                55
## 6785            Manhattan Entire home/apt              1                 1
## 6786        Staten Island    Private room              2               151
## 6787             Brooklyn    Private room             21                 1
## 6788            Manhattan Entire home/apt              5                48
## 6789             Brooklyn Entire home/apt              5                 5
## 6790            Manhattan Entire home/apt              7                 9
## 6791            Manhattan    Private room              3                 4
## 6792             Brooklyn    Private room              2                61
## 6793            Manhattan    Private room              1               315
## 6794            Manhattan     Shared room              1               181
## 6795            Manhattan Entire home/apt             30                 9
## 6796            Manhattan    Private room              7                41
## 6797            Manhattan    Private room              2               200
## 6798             Brooklyn    Private room              3                16
## 6799             Brooklyn Entire home/apt              2                 2
## 6800            Manhattan Entire home/apt             30                71
## 6801            Manhattan    Private room              3                 2
## 6802            Manhattan Entire home/apt              1                 9
## 6803            Manhattan Entire home/apt              3               117
## 6804             Brooklyn    Private room              1                11
## 6805            Manhattan    Private room              1                 6
## 6806                Bronx    Private room             14                27
## 6807             Brooklyn Entire home/apt              2                81
## 6808             Brooklyn    Private room              6                13
## 6809             Brooklyn Entire home/apt              2                14
## 6810            Manhattan    Private room              1               157
## 6811            Manhattan Entire home/apt              3               122
## 6812             Brooklyn    Private room              1                 1
## 6813             Brooklyn    Private room              1               136
## 6814               Queens    Private room              1               120
## 6815             Brooklyn Entire home/apt              6                12
## 6816               Queens    Private room              3                47
## 6817             Brooklyn    Private room             30                30
## 6818             Brooklyn    Private room             30                47
## 6819             Brooklyn    Private room             30                47
## 6820            Manhattan Entire home/apt              5                28
## 6821             Brooklyn Entire home/apt              1                 3
## 6822            Manhattan Entire home/apt              7                 2
## 6823            Manhattan Entire home/apt              2               135
## 6824                Bronx    Private room              1                 2
## 6825             Brooklyn Entire home/apt              2                61
## 6826             Brooklyn Entire home/apt              6                12
## 6827            Manhattan    Private room              2               129
## 6828            Manhattan Entire home/apt              1                36
## 6829            Manhattan Entire home/apt             30                36
## 6830            Manhattan    Private room             25                 2
## 6831             Brooklyn Entire home/apt             30                 7
## 6832            Manhattan Entire home/apt              5               108
## 6833             Brooklyn Entire home/apt              7                56
## 6834             Brooklyn Entire home/apt              1                 2
## 6835             Brooklyn    Private room              1                 1
## 6836               Queens    Private room              2                 6
## 6837            Manhattan    Private room              2                45
## 6838            Manhattan Entire home/apt              1                 3
## 6839             Brooklyn    Private room              2               153
## 6840            Manhattan Entire home/apt              5                 3
## 6841            Manhattan    Private room              1                 5
## 6842             Brooklyn    Private room              2               148
## 6843             Brooklyn    Private room              3               127
## 6844             Brooklyn Entire home/apt              3                10
## 6845             Brooklyn    Private room              3               116
## 6846             Brooklyn    Private room              3                30
## 6847            Manhattan Entire home/apt              1                 1
## 6848             Brooklyn    Private room              3                12
## 6849             Brooklyn    Private room              1                13
## 6850            Manhattan Entire home/apt              5                 7
## 6851            Manhattan    Private room              1                 8
## 6852             Brooklyn    Private room              3                47
## 6853            Manhattan Entire home/apt              6                46
## 6854             Brooklyn Entire home/apt             14                 4
## 6855            Manhattan Entire home/apt             30                 2
## 6856             Brooklyn Entire home/apt             30                 6
## 6857            Manhattan Entire home/apt              7                11
## 6858               Queens Entire home/apt              2                16
## 6859            Manhattan Entire home/apt              1                 3
## 6860             Brooklyn Entire home/apt              3               213
## 6861                Bronx Entire home/apt              5                85
## 6862            Manhattan Entire home/apt              3                12
## 6863            Manhattan    Private room              5                19
## 6864             Brooklyn    Private room              1                68
## 6865            Manhattan     Shared room              2                 2
## 6866             Brooklyn    Private room              1                 5
## 6867            Manhattan    Private room              1                44
## 6868             Brooklyn Entire home/apt              2                11
## 6869             Brooklyn Entire home/apt              4                73
## 6870            Manhattan Entire home/apt              7                17
## 6871             Brooklyn    Private room              4                 3
## 6872             Brooklyn    Private room             30                40
## 6873             Brooklyn    Private room             30                53
## 6874             Brooklyn    Private room             30                46
## 6875             Brooklyn    Private room             30                35
## 6876             Brooklyn    Private room             30                43
## 6877                Bronx    Private room              5                15
## 6878        Staten Island Entire home/apt              5                62
## 6879             Brooklyn Entire home/apt              2               248
## 6880               Queens    Private room              5                 7
## 6881               Queens    Private room             30                 5
## 6882             Brooklyn Entire home/apt              4                11
## 6883             Brooklyn Entire home/apt             14                43
## 6884               Queens    Private room              2                40
## 6885               Queens    Private room              2                55
## 6886            Manhattan Entire home/apt              5                67
## 6887        Staten Island Entire home/apt              4               118
## 6888            Manhattan    Private room             12                31
## 6889            Manhattan    Private room              1                 2
## 6890            Manhattan Entire home/apt              2                55
## 6891             Brooklyn Entire home/apt              1                 1
## 6892            Manhattan Entire home/apt              2                 1
## 6893             Brooklyn Entire home/apt              3                57
## 6894             Brooklyn Entire home/apt              1                59
## 6895             Brooklyn Entire home/apt              2                 5
## 6896             Brooklyn    Private room              7                12
## 6897             Brooklyn    Private room             30                16
## 6898             Brooklyn Entire home/apt              2                 1
## 6899             Brooklyn    Private room              2                34
## 6900            Manhattan    Private room              5                 8
## 6901            Manhattan Entire home/apt              7                 4
## 6902            Manhattan Entire home/apt              3                14
## 6903             Brooklyn    Private room              1                94
## 6904             Brooklyn Entire home/apt              5                 1
## 6905            Manhattan Entire home/apt              1                28
## 6906             Brooklyn    Private room              1               152
## 6907             Brooklyn Entire home/apt              2                99
## 6908            Manhattan Entire home/apt              2                 6
## 6909             Brooklyn Entire home/apt              3                 4
## 6910             Brooklyn    Private room              1               143
## 6911               Queens    Private room              4                 3
## 6912            Manhattan    Private room              3                 3
## 6913               Queens    Private room              1               154
## 6914             Brooklyn Entire home/apt              2                 6
## 6915            Manhattan Entire home/apt             30                27
## 6916            Manhattan Entire home/apt              2                 4
## 6917               Queens     Shared room              1                26
## 6918            Manhattan    Private room              7                 1
## 6919             Brooklyn Entire home/apt             30                 4
## 6920            Manhattan Entire home/apt              2                60
## 6921            Manhattan Entire home/apt              3                 6
## 6922            Manhattan    Private room              3                 4
## 6923             Brooklyn Entire home/apt              5                21
## 6924             Brooklyn Entire home/apt             10                 1
## 6925            Manhattan    Private room              1               158
## 6926             Brooklyn Entire home/apt              5                21
## 6927             Brooklyn    Private room              2                37
## 6928            Manhattan Entire home/apt              5                37
## 6929            Manhattan Entire home/apt              3                59
## 6930             Brooklyn    Private room              2               104
## 6931             Brooklyn Entire home/apt              1                91
## 6932             Brooklyn Entire home/apt              2               137
## 6933            Manhattan Entire home/apt             30                11
## 6934             Brooklyn Entire home/apt              2                71
## 6935             Brooklyn    Private room              4               120
## 6936             Brooklyn Entire home/apt              3                51
## 6937               Queens    Private room              4                17
## 6938             Brooklyn    Private room              1                 2
## 6939            Manhattan Entire home/apt             30                74
## 6940             Brooklyn Entire home/apt              2                 5
## 6941            Manhattan    Private room              1                 1
## 6942            Manhattan    Private room              1                70
## 6943               Queens    Private room              1                 2
## 6944             Brooklyn Entire home/apt              2               143
## 6945             Brooklyn Entire home/apt              2                42
## 6946            Manhattan Entire home/apt              5                43
## 6947             Brooklyn Entire home/apt              2               105
## 6948            Manhattan    Private room              1                 6
## 6949            Manhattan Entire home/apt             30                11
## 6950            Manhattan Entire home/apt              2                10
## 6951             Brooklyn Entire home/apt              2               127
## 6952             Brooklyn Entire home/apt              5                32
## 6953             Brooklyn Entire home/apt              2               119
## 6954            Manhattan    Private room             20                 9
## 6955               Queens Entire home/apt              7                 2
## 6956            Manhattan    Private room              1                 1
## 6957             Brooklyn    Private room              4                 1
## 6958            Manhattan Entire home/apt              1                44
## 6959             Brooklyn Entire home/apt              3                79
## 6960            Manhattan Entire home/apt              7                59
## 6961             Brooklyn    Private room             10                 1
## 6962            Manhattan Entire home/apt             30                 8
## 6963            Manhattan    Private room              2                36
## 6964            Manhattan Entire home/apt              2                18
## 6965            Manhattan Entire home/apt              5                87
## 6966            Manhattan    Private room              3                 2
## 6967            Manhattan Entire home/apt              5                 2
## 6968             Brooklyn    Private room              2               280
## 6969             Brooklyn    Private room              3                 1
## 6970             Brooklyn    Private room              2                 4
## 6971             Brooklyn Entire home/apt              3               106
## 6972            Manhattan Entire home/apt              2                10
## 6973            Manhattan    Private room              1                 1
## 6974            Manhattan    Private room              3               129
## 6975            Manhattan Entire home/apt             30                11
## 6976            Manhattan    Private room              2               396
## 6977             Brooklyn Entire home/apt              3                29
## 6978             Brooklyn Entire home/apt             10                 2
## 6979            Manhattan Entire home/apt              4                38
## 6980             Brooklyn    Private room              1                11
## 6981            Manhattan Entire home/apt             30                12
## 6982             Brooklyn Entire home/apt              2                 3
## 6983               Queens Entire home/apt              2               150
## 6984            Manhattan    Private room              4               191
## 6985            Manhattan Entire home/apt              4                 1
## 6986             Brooklyn    Private room              3               101
## 6987            Manhattan Entire home/apt             30                10
## 6988            Manhattan    Private room              2                 3
## 6989             Brooklyn Entire home/apt             30                 8
## 6990            Manhattan Entire home/apt              4                14
## 6991               Queens Entire home/apt              3                 3
## 6992             Brooklyn Entire home/apt              1                27
## 6993             Brooklyn Entire home/apt              4                 6
## 6994            Manhattan Entire home/apt              1                19
## 6995             Brooklyn    Private room              2                 9
## 6996             Brooklyn    Private room              3                51
## 6997            Manhattan Entire home/apt              3               138
## 6998             Brooklyn Entire home/apt              2                 3
## 6999             Brooklyn Entire home/apt              5                83
## 7000                Bronx Entire home/apt              2                95
## 7001             Brooklyn Entire home/apt              8                39
## 7002            Manhattan Entire home/apt              5                 2
## 7003             Brooklyn Entire home/apt              5                 8
## 7004             Brooklyn Entire home/apt              2                22
## 7005            Manhattan    Private room              2                 7
## 7006               Queens     Shared room              5                 4
## 7007            Manhattan    Private room              3                24
## 7008               Queens Entire home/apt              2                74
## 7009             Brooklyn Entire home/apt              7                 7
## 7010               Queens    Private room              2                49
## 7011            Manhattan Entire home/apt              3                67
## 7012            Manhattan Entire home/apt              3                11
## 7013               Queens Entire home/apt              4                38
## 7014            Manhattan    Private room              1                 7
## 7015               Queens    Private room              2                83
## 7016             Brooklyn    Private room              3                 4
## 7017             Brooklyn Entire home/apt              1               183
## 7018            Manhattan Entire home/apt              3                 1
## 7019               Queens    Private room             25                 1
## 7020             Brooklyn    Private room              3                28
## 7021            Manhattan Entire home/apt              4                 9
## 7022               Queens Entire home/apt              3               177
## 7023            Manhattan Entire home/apt              2                 1
## 7024             Brooklyn    Private room              1               270
## 7025             Brooklyn    Private room              5                 6
## 7026            Manhattan    Private room             90               163
## 7027             Brooklyn    Private room              3                 2
## 7028            Manhattan Entire home/apt              4                30
## 7029            Manhattan Entire home/apt              5                26
## 7030             Brooklyn Entire home/apt              5                 9
## 7031            Manhattan Entire home/apt             30               104
## 7032            Manhattan Entire home/apt              3               138
## 7033             Brooklyn Entire home/apt             30               101
## 7034               Queens Entire home/apt              1                51
## 7035             Brooklyn Entire home/apt             30                 1
## 7036             Brooklyn    Private room              1                19
## 7037             Brooklyn Entire home/apt              7                 6
## 7038            Manhattan Entire home/apt              3                 3
## 7039            Manhattan Entire home/apt              6                24
## 7040            Manhattan Entire home/apt             30                 4
## 7041             Brooklyn Entire home/apt              5                11
## 7042            Manhattan    Private room              3                65
## 7043            Manhattan    Private room              1                 1
## 7044            Manhattan    Private room              3                19
## 7045             Brooklyn Entire home/apt             30                 1
## 7046            Manhattan Entire home/apt              2                 8
## 7047            Manhattan Entire home/apt              2                60
## 7048            Manhattan    Private room              1                 3
## 7049            Manhattan Entire home/apt              2                28
## 7050            Manhattan Entire home/apt             14                 1
## 7051               Queens    Private room              3               113
## 7052             Brooklyn    Private room              1                 1
## 7053            Manhattan Entire home/apt             10                 7
## 7054             Brooklyn    Private room              2                39
## 7055            Manhattan Entire home/apt              5                36
## 7056             Brooklyn    Private room              2                 1
## 7057            Manhattan Entire home/apt              2               161
## 7058             Brooklyn    Private room              1                67
## 7059            Manhattan Entire home/apt              4                 6
## 7060            Manhattan Entire home/apt             30                12
## 7061            Manhattan Entire home/apt             30               276
## 7062             Brooklyn    Private room              4                16
## 7063             Brooklyn Entire home/apt              2                19
## 7064             Brooklyn    Private room              1                 1
## 7065            Manhattan     Shared room              2                57
## 7066             Brooklyn Entire home/apt              3                62
## 7067             Brooklyn    Private room              5                59
## 7068             Brooklyn Entire home/apt              1                 1
## 7069             Brooklyn    Private room              4                 1
## 7070            Manhattan    Private room              3                 1
## 7071               Queens Entire home/apt              3                96
## 7072             Brooklyn    Private room              3               103
## 7073            Manhattan Entire home/apt              3                 1
## 7074            Manhattan     Shared room              1                84
## 7075            Manhattan Entire home/apt              1                 4
## 7076            Manhattan Entire home/apt              1                 2
## 7077               Queens    Private room              1               466
## 7078             Brooklyn Entire home/apt              3                78
## 7079            Manhattan Entire home/apt              1                 9
## 7080            Manhattan Entire home/apt              2                25
## 7081             Brooklyn Entire home/apt              2                 2
## 7082            Manhattan Entire home/apt              6                 7
## 7083            Manhattan Entire home/apt              3                 4
## 7084             Brooklyn     Shared room              1                 1
## 7085            Manhattan    Private room              5                 2
## 7086             Brooklyn    Private room              1                 2
## 7087               Queens Entire home/apt              2                65
## 7088            Manhattan Entire home/apt              2                14
## 7089             Brooklyn Entire home/apt              3               127
## 7090             Brooklyn    Private room              4               118
## 7091            Manhattan    Private room              7                 1
## 7092                Bronx    Private room              2               132
## 7093            Manhattan Entire home/apt              2                44
## 7094            Manhattan Entire home/apt             30                 3
## 7095        Staten Island    Private room             30                 6
## 7096             Brooklyn    Private room              4                 1
## 7097             Brooklyn Entire home/apt              4                 7
## 7098             Brooklyn Entire home/apt              2                 3
## 7099             Brooklyn Entire home/apt              2                 3
## 7100             Brooklyn Entire home/apt             15                27
## 7101            Manhattan    Private room              2                43
## 7102            Manhattan Entire home/apt             31                 2
## 7103            Manhattan    Private room              4                23
## 7104            Manhattan Entire home/apt              1                 4
## 7105             Brooklyn Entire home/apt              3                 1
## 7106             Brooklyn Entire home/apt             30                37
## 7107             Brooklyn    Private room              1               118
## 7108               Queens Entire home/apt              7                 1
## 7109             Brooklyn     Shared room              1               236
## 7110            Manhattan Entire home/apt              4                 4
## 7111             Brooklyn Entire home/apt              4                59
## 7112             Brooklyn    Private room              3                97
## 7113            Manhattan Entire home/apt             30                 8
## 7114             Brooklyn Entire home/apt              3                30
## 7115            Manhattan Entire home/apt              2                 1
## 7116            Manhattan    Private room              2               129
## 7117            Manhattan    Private room              3                14
## 7118            Manhattan    Private room              4                 1
## 7119             Brooklyn    Private room              4                 2
## 7120            Manhattan Entire home/apt              2                34
## 7121            Manhattan Entire home/apt              7                 5
## 7122             Brooklyn Entire home/apt              1                15
## 7123             Brooklyn     Shared room              2                45
## 7124            Manhattan Entire home/apt             30                25
## 7125             Brooklyn Entire home/apt              1                 2
## 7126             Brooklyn    Private room             30                56
## 7127            Manhattan Entire home/apt             30                13
## 7128               Queens Entire home/apt              4                77
## 7129             Brooklyn Entire home/apt              4                95
## 7130            Manhattan Entire home/apt              3                46
## 7131            Manhattan    Private room              4                 2
## 7132            Manhattan Entire home/apt              5                22
## 7133             Brooklyn    Private room              2               162
## 7134            Manhattan Entire home/apt              4                51
## 7135            Manhattan    Private room              3                75
## 7136            Manhattan Entire home/apt             14                 3
## 7137             Brooklyn Entire home/apt             30                23
## 7138             Brooklyn Entire home/apt             14                 3
## 7139             Brooklyn    Private room             30                67
## 7140            Manhattan    Private room              1                 1
## 7141            Manhattan Entire home/apt              3               116
## 7142               Queens Entire home/apt              7                 2
## 7143            Manhattan Entire home/apt              2                 2
## 7144             Brooklyn    Private room              1               156
## 7145             Brooklyn Entire home/apt              3               165
## 7146             Brooklyn Entire home/apt              1                94
## 7147             Brooklyn    Private room              3               121
## 7148             Brooklyn Entire home/apt             10                 1
## 7149             Brooklyn    Private room              2                 9
## 7150             Brooklyn Entire home/apt              1               183
## 7151                Bronx Entire home/apt              2                41
## 7152             Brooklyn Entire home/apt              2                 2
## 7153            Manhattan Entire home/apt              5                 5
## 7154             Brooklyn    Private room              1               162
## 7155             Brooklyn    Private room              1               163
## 7156             Brooklyn    Private room              1               170
## 7157            Manhattan Entire home/apt              2                 3
## 7158             Brooklyn Entire home/apt              2                 1
## 7159            Manhattan     Shared room              1                36
## 7160             Brooklyn    Private room              3                 4
## 7161            Manhattan Entire home/apt              3                 2
## 7162                Bronx Entire home/apt              4                48
## 7163            Manhattan    Private room              1               297
## 7164            Manhattan    Private room              5                 4
## 7165             Brooklyn Entire home/apt              3                10
## 7166             Brooklyn Entire home/apt              7                47
## 7167             Brooklyn    Private room              3                40
## 7168            Manhattan Entire home/apt              1                 2
## 7169             Brooklyn Entire home/apt              6                30
## 7170                Bronx Entire home/apt              2                80
## 7171             Brooklyn    Private room              1               170
## 7172             Brooklyn Entire home/apt              2                 1
## 7173             Brooklyn    Private room              1                46
## 7174            Manhattan    Private room              6                 3
## 7175            Manhattan Entire home/apt              4                89
## 7176             Brooklyn    Private room              3               126
## 7177             Brooklyn Entire home/apt             30                63
## 7178            Manhattan    Private room              2                 2
## 7179            Manhattan    Private room              1                 1
## 7180            Manhattan Entire home/apt              1                 1
## 7181               Queens    Private room              1                 2
## 7182            Manhattan    Private room              3                95
## 7183            Manhattan    Private room              2               247
## 7184             Brooklyn Entire home/apt             10                 4
## 7185             Brooklyn Entire home/apt              3               139
## 7186            Manhattan Entire home/apt              5                 9
## 7187            Manhattan    Private room              2                35
## 7188               Queens    Private room              2               151
## 7189            Manhattan    Private room              1                75
## 7190               Queens    Private room              2               128
## 7191             Brooklyn    Private room              1                 1
## 7192            Manhattan    Private room              3                 5
## 7193             Brooklyn Entire home/apt              3                24
## 7194            Manhattan Entire home/apt             14                 2
## 7195             Brooklyn    Private room              1                 2
## 7196            Manhattan Entire home/apt              4                46
## 7197            Manhattan Entire home/apt              1                39
## 7198            Manhattan    Private room             30                 4
## 7199             Brooklyn Entire home/apt              3                99
## 7200             Brooklyn    Private room              4                12
## 7201            Manhattan Entire home/apt              6                 6
## 7202            Manhattan    Private room             10               133
## 7203             Brooklyn Entire home/apt              3                29
## 7204             Brooklyn Entire home/apt              1                 7
## 7205             Brooklyn    Private room             30                57
## 7206             Brooklyn Entire home/apt              3                 2
## 7207             Brooklyn    Private room              1                 2
## 7208             Brooklyn Entire home/apt              2               182
## 7209            Manhattan Entire home/apt              3                 6
## 7210             Brooklyn Entire home/apt             10                 5
## 7211             Brooklyn    Private room              2                17
## 7212             Brooklyn    Private room              1                 2
## 7213            Manhattan Entire home/apt              7                 3
## 7214            Manhattan Entire home/apt              3                 3
## 7215            Manhattan Entire home/apt              3                62
## 7216             Brooklyn    Private room              5                 1
## 7217            Manhattan    Private room              1                 1
## 7218             Brooklyn Entire home/apt             60                 2
## 7219             Brooklyn    Private room             30                26
## 7220             Brooklyn    Private room             30                23
## 7221             Brooklyn Entire home/apt              2                 7
## 7222             Brooklyn Entire home/apt              2                 1
## 7223             Brooklyn Entire home/apt              2                 4
## 7224             Brooklyn Entire home/apt             30                 1
## 7225             Brooklyn    Private room              2                 4
## 7226             Brooklyn Entire home/apt              3                 2
## 7227            Manhattan    Private room              1                 1
## 7228            Manhattan    Private room             30                 1
## 7229             Brooklyn    Private room              3                12
## 7230             Brooklyn Entire home/apt              3               152
## 7231             Brooklyn Entire home/apt              3               120
## 7232             Brooklyn    Private room              1                 1
## 7233             Brooklyn    Private room              1                26
## 7234             Brooklyn    Private room              1                 8
## 7235               Queens Entire home/apt              5                 6
## 7236             Brooklyn Entire home/apt              5                 2
## 7237             Brooklyn    Private room              3                 9
## 7238            Manhattan Entire home/apt              3               107
## 7239            Manhattan Entire home/apt              1                 1
## 7240            Manhattan     Shared room              1                 2
## 7241            Manhattan Entire home/apt              3                10
## 7242             Brooklyn Entire home/apt              5                 1
## 7243            Manhattan Entire home/apt              7                 6
## 7244             Brooklyn    Private room              1               174
## 7245            Manhattan Entire home/apt              5                 3
## 7246            Manhattan Entire home/apt              7                 4
## 7247            Manhattan Entire home/apt              4                 2
## 7248            Manhattan Entire home/apt              3               143
## 7249            Manhattan    Private room             60               140
## 7250        Staten Island Entire home/apt              4               129
## 7251             Brooklyn Entire home/apt              1                 2
## 7252             Brooklyn Entire home/apt              2                77
## 7253            Manhattan Entire home/apt              2                94
## 7254             Brooklyn Entire home/apt              3                60
## 7255             Brooklyn Entire home/apt              2                63
## 7256             Brooklyn    Private room              1               127
## 7257            Manhattan Entire home/apt              2                 8
## 7258             Brooklyn Entire home/apt              3                90
## 7259             Brooklyn    Private room              2               190
## 7260            Manhattan Entire home/apt              2                 2
## 7261            Manhattan    Private room             30                14
## 7262            Manhattan    Private room              3                 9
## 7263             Brooklyn    Private room              1                 5
## 7264             Brooklyn    Private room              1                54
## 7265             Brooklyn    Private room             30                43
## 7266             Brooklyn Entire home/apt              3                 1
## 7267            Manhattan Entire home/apt              3                 7
## 7268            Manhattan Entire home/apt              1                 1
## 7269            Manhattan Entire home/apt              5                 6
## 7270            Manhattan    Private room              1                 2
## 7271            Manhattan    Private room              3                 1
## 7272            Manhattan    Private room              3                68
## 7273            Manhattan    Private room              6                40
## 7274            Manhattan    Private room              2                 1
## 7275             Brooklyn Entire home/apt             14                 1
## 7276             Brooklyn Entire home/apt              1                69
## 7277             Brooklyn Entire home/apt              3                 1
## 7278            Manhattan Entire home/apt              3                 3
## 7279            Manhattan    Private room              4                20
## 7280            Manhattan Entire home/apt              2                 3
## 7281             Brooklyn Entire home/apt              3                18
## 7282            Manhattan Entire home/apt              1                66
## 7283            Manhattan    Private room              1                 1
## 7284             Brooklyn    Private room              1                 1
## 7285               Queens Entire home/apt              1                52
## 7286             Brooklyn    Private room              3               102
## 7287            Manhattan Entire home/apt             30                13
## 7288             Brooklyn    Private room              4                11
## 7289            Manhattan Entire home/apt              1                 9
## 7290            Manhattan    Private room              2                48
## 7291            Manhattan Entire home/apt              4                 8
## 7292            Manhattan    Private room              1                 1
## 7293            Manhattan Entire home/apt              4                11
## 7294            Manhattan    Private room              1                 1
## 7295            Manhattan    Private room              2                43
## 7296             Brooklyn    Private room              2                70
## 7297            Manhattan    Private room              4                49
## 7298            Manhattan Entire home/apt              3                63
## 7299            Manhattan    Private room              1                 4
## 7300            Manhattan Entire home/apt              7                 2
## 7301            Manhattan    Private room              1               159
## 7302            Manhattan Entire home/apt              3                 4
## 7303            Manhattan Entire home/apt              1                 6
## 7304             Brooklyn    Private room              1               116
## 7305            Manhattan    Private room              1                92
## 7306            Manhattan Entire home/apt              1                 1
## 7307            Manhattan Entire home/apt              7                 3
## 7308             Brooklyn Entire home/apt              3                19
## 7309            Manhattan Entire home/apt              3                26
## 7310            Manhattan Entire home/apt              3                 2
## 7311            Manhattan    Private room              3                 4
## 7312            Manhattan Entire home/apt              1                28
## 7313            Manhattan Entire home/apt              5                 8
## 7314             Brooklyn Entire home/apt              2                 2
## 7315             Brooklyn    Private room              2                56
## 7316               Queens Entire home/apt              1                72
## 7317             Brooklyn    Private room              3                 5
## 7318            Manhattan Entire home/apt             30                 3
## 7319             Brooklyn Entire home/apt              3                97
## 7320            Manhattan    Private room             30                 8
## 7321             Brooklyn    Private room              1                 1
## 7322             Brooklyn    Private room             14                 9
## 7323             Brooklyn    Private room              2               110
## 7324            Manhattan    Private room              1                 1
## 7325             Brooklyn Entire home/apt              3                15
## 7326            Manhattan    Private room              1                88
## 7327             Brooklyn    Private room              4                 4
## 7328            Manhattan Entire home/apt              2                 6
## 7329            Manhattan Entire home/apt              2                15
## 7330             Brooklyn Entire home/apt              1                 1
## 7331             Brooklyn    Private room              3                 3
## 7332               Queens    Private room              7                 1
## 7333             Brooklyn    Private room              1                 5
## 7334            Manhattan    Private room              5                42
## 7335                Bronx Entire home/apt              4               107
## 7336            Manhattan    Private room              2                28
## 7337             Brooklyn    Private room              1                 3
## 7338            Manhattan Entire home/apt              1                35
## 7339               Queens Entire home/apt              3               133
## 7340             Brooklyn    Private room             31                 3
## 7341             Brooklyn Entire home/apt              1                93
## 7342            Manhattan Entire home/apt              1                 4
## 7343             Brooklyn    Private room              2                 6
## 7344             Brooklyn Entire home/apt              2               175
## 7345             Brooklyn    Private room              1                 3
## 7346               Queens    Private room              1                 1
## 7347            Manhattan Entire home/apt              4                 4
## 7348            Manhattan Entire home/apt             14                 2
## 7349             Brooklyn Entire home/apt              7                 9
## 7350             Brooklyn     Shared room              5                27
## 7351             Brooklyn    Private room              5                 3
## 7352             Brooklyn    Private room              3                 2
## 7353            Manhattan Entire home/apt              5                 8
## 7354            Manhattan Entire home/apt              1                 5
## 7355             Brooklyn Entire home/apt              4                91
## 7356            Manhattan Entire home/apt              3                26
## 7357            Manhattan    Private room              1               148
## 7358             Brooklyn    Private room              4                 4
## 7359             Brooklyn    Private room              1                 1
## 7360             Brooklyn Entire home/apt              1                 5
## 7361            Manhattan    Private room              5                 1
## 7362                Bronx Entire home/apt              1                 6
## 7363             Brooklyn    Private room              4                58
## 7364               Queens Entire home/apt              2               204
## 7365            Manhattan    Private room              2                 3
## 7366             Brooklyn    Private room              1               397
## 7367            Manhattan    Private room              1                 7
## 7368             Brooklyn    Private room             30                10
## 7369            Manhattan Entire home/apt              4                 1
## 7370             Brooklyn Entire home/apt             30                10
## 7371            Manhattan Entire home/apt              1                 2
## 7372            Manhattan Entire home/apt              1                38
## 7373            Manhattan Entire home/apt              1                 5
## 7374            Manhattan    Private room              2               290
## 7375            Manhattan    Private room              1               103
## 7376            Manhattan    Private room              4                 1
## 7377             Brooklyn Entire home/apt              6                 5
## 7378             Brooklyn Entire home/apt              2                64
## 7379            Manhattan    Private room              3                 1
## 7380             Brooklyn Entire home/apt              6                17
## 7381               Queens Entire home/apt              2                44
## 7382             Brooklyn Entire home/apt              3               100
## 7383             Brooklyn    Private room              1                 8
## 7384             Brooklyn    Private room              4                 2
## 7385             Brooklyn Entire home/apt             14                 2
## 7386             Brooklyn Entire home/apt              1               208
## 7387            Manhattan Entire home/apt              4                 6
## 7388             Brooklyn Entire home/apt              2                 1
## 7389             Brooklyn Entire home/apt              2               176
## 7390             Brooklyn Entire home/apt              2                56
## 7391            Manhattan    Private room              2               246
## 7392            Manhattan    Private room              4                 3
## 7393            Manhattan Entire home/apt              3                 2
## 7394               Queens Entire home/apt              4                 2
## 7395            Manhattan    Private room              2                50
## 7396             Brooklyn    Private room              5                72
## 7397             Brooklyn    Private room              1                 4
## 7398             Brooklyn    Private room              4                 7
## 7399             Brooklyn Entire home/apt              4                56
## 7400             Brooklyn    Private room              1                 1
## 7401            Manhattan Entire home/apt              3                 5
## 7402            Manhattan Entire home/apt              3               116
## 7403            Manhattan Entire home/apt              3                 1
## 7404            Manhattan Entire home/apt              2                21
## 7405             Brooklyn Entire home/apt              1               179
## 7406             Brooklyn Entire home/apt              4                 9
## 7407             Brooklyn Entire home/apt              3                14
## 7408             Brooklyn Entire home/apt              2                17
## 7409            Manhattan    Private room              3                22
## 7410             Brooklyn    Private room              4                 6
## 7411             Brooklyn    Private room              1               135
## 7412               Queens Entire home/apt              1                 3
## 7413             Brooklyn    Private room              2               115
## 7414            Manhattan    Private room              2                78
## 7415            Manhattan    Private room              1                10
## 7416             Brooklyn Entire home/apt              7                52
## 7417             Brooklyn Entire home/apt              4                 1
## 7418             Brooklyn    Private room             30                 2
## 7419             Brooklyn    Private room              2                 4
## 7420            Manhattan Entire home/apt              4                27
## 7421             Brooklyn Entire home/apt              3               137
## 7422            Manhattan    Private room              1                37
## 7423               Queens    Private room              6                 4
## 7424            Manhattan    Private room              2                79
## 7425             Brooklyn Entire home/apt              1                24
## 7426            Manhattan Entire home/apt              5                25
## 7427            Manhattan    Private room              2                 5
## 7428            Manhattan Entire home/apt              2                 8
## 7429               Queens Entire home/apt              6                 4
## 7430            Manhattan Entire home/apt             30                 5
## 7431               Queens    Private room              1                14
## 7432            Manhattan Entire home/apt              2                71
## 7433            Manhattan Entire home/apt              5                 3
## 7434            Manhattan Entire home/apt              2               150
## 7435             Brooklyn Entire home/apt              5                33
## 7436               Queens    Private room              6                25
## 7437             Brooklyn Entire home/apt              7                 3
## 7438            Manhattan    Private room              3                14
## 7439            Manhattan    Private room              2                 4
## 7440             Brooklyn Entire home/apt              5                15
## 7441             Brooklyn Entire home/apt             30                 3
## 7442             Brooklyn Entire home/apt              7                15
## 7443             Brooklyn Entire home/apt              4                59
## 7444            Manhattan Entire home/apt              2                13
## 7445             Brooklyn Entire home/apt              4                 9
## 7446             Brooklyn Entire home/apt              1               150
## 7447            Manhattan    Private room              3                11
## 7448            Manhattan Entire home/apt              5                95
## 7449               Queens    Private room              2               188
## 7450            Manhattan Entire home/apt              3                11
## 7451            Manhattan Entire home/apt              3                 2
## 7452             Brooklyn    Private room              2                49
## 7453             Brooklyn Entire home/apt              5                16
## 7454            Manhattan Entire home/apt              7                45
## 7455            Manhattan Entire home/apt              2                 5
## 7456            Manhattan    Private room              2                11
## 7457             Brooklyn    Private room             10                22
## 7458            Manhattan Entire home/apt              2                 1
## 7459             Brooklyn Entire home/apt              2                49
## 7460            Manhattan Entire home/apt              1                 2
## 7461            Manhattan Entire home/apt             30                12
## 7462             Brooklyn Entire home/apt              2                 2
## 7463             Brooklyn Entire home/apt              3                14
## 7464            Manhattan Entire home/apt              1                 1
## 7465            Manhattan Entire home/apt              4                 3
## 7466            Manhattan Entire home/apt              3                71
## 7467               Queens Entire home/apt              1                26
## 7468               Queens Entire home/apt              1                67
## 7469             Brooklyn    Private room              1                 5
## 7470               Queens Entire home/apt              3                 2
## 7471             Brooklyn    Private room              1               100
## 7472               Queens    Private room              1                 4
## 7473            Manhattan Entire home/apt              1                 4
## 7474            Manhattan    Private room              4                37
## 7475               Queens    Private room              3                 2
## 7476            Manhattan Entire home/apt              2                19
## 7477             Brooklyn    Private room              7                 2
## 7478             Brooklyn    Private room              3               131
## 7479             Brooklyn    Private room              2                 1
## 7480             Brooklyn Entire home/apt             30                35
## 7481             Brooklyn    Private room              2               124
## 7482             Brooklyn Entire home/apt              5                 1
## 7483            Manhattan    Private room              1               185
## 7484             Brooklyn Entire home/apt              3                10
## 7485            Manhattan Entire home/apt              2                36
## 7486            Manhattan Entire home/apt              4                 5
## 7487            Manhattan    Private room              1                 6
## 7488             Brooklyn Entire home/apt              7                 4
## 7489             Brooklyn    Private room              2                32
## 7490            Manhattan Entire home/apt              2                52
## 7491            Manhattan    Private room              2               126
## 7492            Manhattan Entire home/apt              2                15
## 7493        Staten Island Entire home/apt              3                69
## 7494               Queens Entire home/apt              1               137
## 7495            Manhattan Entire home/apt              2                 5
## 7496             Brooklyn Entire home/apt              3                 5
## 7497            Manhattan    Private room             20                 2
## 7498               Queens    Private room              6                11
## 7499             Brooklyn Entire home/apt              7                 2
## 7500            Manhattan Entire home/apt              3                 2
## 7501             Brooklyn Entire home/apt              2                10
## 7502            Manhattan Entire home/apt              3                13
## 7503             Brooklyn    Private room              4                87
## 7504             Brooklyn    Private room             30                54
## 7505            Manhattan Entire home/apt              5                82
## 7506             Brooklyn Entire home/apt              3                16
## 7507            Manhattan Entire home/apt              1                 4
## 7508            Manhattan Entire home/apt             30                27
## 7509             Brooklyn    Private room              8                 1
## 7510            Manhattan    Private room              2                18
## 7511             Brooklyn Entire home/apt              5                15
## 7512            Manhattan Entire home/apt              7                 2
## 7513             Brooklyn Entire home/apt              3               130
## 7514            Manhattan    Private room              2                52
## 7515             Brooklyn Entire home/apt              2                85
## 7516             Brooklyn    Private room              2                11
## 7517            Manhattan Entire home/apt              2                36
## 7518             Brooklyn    Private room              3                13
## 7519             Brooklyn    Private room              3               108
## 7520             Brooklyn    Private room              1                 2
## 7521            Manhattan Entire home/apt              2                34
## 7522            Manhattan Entire home/apt              1                 3
## 7523               Queens    Private room              2               114
## 7524            Manhattan    Private room              2                62
## 7525             Brooklyn Entire home/apt              7                 1
## 7526               Queens    Private room              1                56
## 7527            Manhattan    Private room              4                 5
## 7528            Manhattan Entire home/apt              4               119
## 7529             Brooklyn Entire home/apt              3                 5
## 7530            Manhattan    Private room              3                 2
## 7531            Manhattan Entire home/apt              3               122
## 7532             Brooklyn Entire home/apt             30                12
## 7533               Queens Entire home/apt              1                49
## 7534            Manhattan    Private room              2               111
## 7535               Queens Entire home/apt              4                 1
## 7536            Manhattan    Private room              3                27
## 7537            Manhattan    Private room              9                 3
## 7538             Brooklyn    Private room              1                48
## 7539            Manhattan Entire home/apt              3                 3
## 7540             Brooklyn Entire home/apt              2                 5
## 7541             Brooklyn    Private room              2                12
## 7542             Brooklyn Entire home/apt              3               133
## 7543             Brooklyn    Private room              1                 2
## 7544             Brooklyn    Private room              1               107
## 7545            Manhattan    Private room              4                20
## 7546             Brooklyn Entire home/apt              4                 5
## 7547             Brooklyn Entire home/apt              3                52
## 7548             Brooklyn    Private room              2               131
## 7549             Brooklyn Entire home/apt              7                20
## 7550            Manhattan Entire home/apt              1                70
## 7551             Brooklyn Entire home/apt              4                 2
## 7552            Manhattan Entire home/apt              4                11
## 7553             Brooklyn Entire home/apt              5               161
## 7554             Brooklyn Entire home/apt              3                18
## 7555               Queens Entire home/apt              1               145
## 7556             Brooklyn Entire home/apt              3                46
## 7557            Manhattan    Private room              5                53
## 7558            Manhattan Entire home/apt              2                 5
## 7559               Queens    Private room              7                11
## 7560             Brooklyn    Private room              3                18
## 7561             Brooklyn    Private room              2                 3
## 7562            Manhattan Entire home/apt              4                11
## 7563            Manhattan Entire home/apt              2                 1
## 7564            Manhattan    Private room              3                24
## 7565             Brooklyn Entire home/apt              3                58
## 7566            Manhattan Entire home/apt             10                 7
## 7567             Brooklyn Entire home/apt              2                92
## 7568             Brooklyn Entire home/apt             10                 7
## 7569            Manhattan Entire home/apt              3                12
## 7570             Brooklyn Entire home/apt              1                 1
## 7571             Brooklyn    Private room              1                11
## 7572            Manhattan Entire home/apt              3                 1
## 7573             Brooklyn Entire home/apt              3                 1
## 7574             Brooklyn    Private room              2                 1
## 7575               Queens    Private room              2                36
## 7576             Brooklyn Entire home/apt              6                33
## 7577             Brooklyn Entire home/apt              4                 2
## 7578             Brooklyn    Private room              1                 7
## 7579            Manhattan    Private room              2               133
## 7580             Brooklyn    Private room              2                15
## 7581             Brooklyn Entire home/apt              2                16
## 7582            Manhattan    Private room              1                 2
## 7583            Manhattan Entire home/apt              3                68
## 7584               Queens    Private room              1                 4
## 7585            Manhattan    Private room              9                 7
## 7586             Brooklyn Entire home/apt              5                12
## 7587            Manhattan Entire home/apt              3                11
## 7588               Queens Entire home/apt              4                13
## 7589             Brooklyn Entire home/apt              3                 1
## 7590            Manhattan Entire home/apt              4                 3
## 7591             Brooklyn Entire home/apt              5                 4
## 7592            Manhattan    Private room              1               221
## 7593            Manhattan Entire home/apt              3                38
## 7594            Manhattan    Private room              7                11
## 7595             Brooklyn    Private room             10                 1
## 7596            Manhattan Entire home/apt              5                 8
## 7597             Brooklyn Entire home/apt              3                 2
## 7598            Manhattan    Private room              2                32
## 7599             Brooklyn    Private room              1                 1
## 7600             Brooklyn    Private room             18                24
## 7601            Manhattan    Private room              3                64
## 7602            Manhattan Entire home/apt              4                11
## 7603             Brooklyn Entire home/apt              3                 1
## 7604             Brooklyn Entire home/apt              2                49
## 7605            Manhattan Entire home/apt              5                 6
## 7606             Brooklyn Entire home/apt              5                25
## 7607            Manhattan    Private room              1                33
## 7608             Brooklyn Entire home/apt              3                 1
## 7609            Manhattan Entire home/apt              5                18
## 7610             Brooklyn    Private room              2                12
## 7611             Brooklyn Entire home/apt            365                 4
## 7612             Brooklyn Entire home/apt              2                13
## 7613            Manhattan    Private room              1                52
## 7614            Manhattan Entire home/apt              5                 4
## 7615             Brooklyn Entire home/apt              5                 4
## 7616             Brooklyn    Private room              1                20
## 7617             Brooklyn Entire home/apt              1                 3
## 7618             Brooklyn Entire home/apt              3                78
## 7619            Manhattan Entire home/apt              1                 7
## 7620            Manhattan    Private room              1                62
## 7621            Manhattan Entire home/apt              2                29
## 7622               Queens    Private room              9                12
## 7623             Brooklyn Entire home/apt              3                 1
## 7624            Manhattan Entire home/apt              4                 1
## 7625            Manhattan Entire home/apt              1                52
## 7626            Manhattan Entire home/apt              1                 4
## 7627            Manhattan    Private room              1                59
## 7628             Brooklyn Entire home/apt              4                34
## 7629            Manhattan    Private room              1                19
## 7630            Manhattan Entire home/apt             35                 7
## 7631            Manhattan Entire home/apt             30                 1
## 7632            Manhattan Entire home/apt              3                 1
## 7633            Manhattan Entire home/apt              1                 4
## 7634            Manhattan    Private room              3                11
## 7635             Brooklyn     Shared room              1                 9
## 7636             Brooklyn Entire home/apt              1                 5
## 7637             Brooklyn    Private room              1                 1
## 7638             Brooklyn Entire home/apt              4                70
## 7639            Manhattan Entire home/apt             30                 2
## 7640            Manhattan    Private room              7                 2
## 7641               Queens    Private room              2               186
## 7642             Brooklyn Entire home/apt              4                28
## 7643             Brooklyn Entire home/apt              3                20
## 7644            Manhattan Entire home/apt              1                13
## 7645               Queens    Private room             28                14
## 7646             Brooklyn Entire home/apt              1                 1
## 7647             Brooklyn Entire home/apt              7                 1
## 7648            Manhattan    Private room              2                 1
## 7649            Manhattan Entire home/apt              2                90
## 7650             Brooklyn Entire home/apt             30                 1
## 7651             Brooklyn    Private room              2                53
## 7652             Brooklyn Entire home/apt              2                 6
## 7653            Manhattan Entire home/apt              2                30
## 7654            Manhattan    Private room              2                17
## 7655               Queens Entire home/apt              7                 1
## 7656             Brooklyn Entire home/apt              4                23
## 7657            Manhattan    Private room              1                 2
## 7658             Brooklyn Entire home/apt              3                 4
## 7659            Manhattan Entire home/apt              3                 2
## 7660            Manhattan Entire home/apt              5                14
## 7661             Brooklyn Entire home/apt              5                 5
## 7662               Queens    Private room              6                15
## 7663            Manhattan Entire home/apt              1                11
## 7664             Brooklyn    Private room              1                 1
## 7665               Queens    Private room             10                 1
## 7666            Manhattan Entire home/apt              4                15
## 7667             Brooklyn    Private room              2                 1
## 7668                Bronx    Private room              7                40
## 7669               Queens Entire home/apt              3                 3
## 7670               Queens Entire home/apt              5                 5
## 7671             Brooklyn Entire home/apt              2                 3
## 7672             Brooklyn    Private room              1                 1
## 7673            Manhattan    Private room              2               185
## 7674               Queens Entire home/apt              1                 2
## 7675             Brooklyn Entire home/apt              3                21
## 7676            Manhattan Entire home/apt              2                 2
## 7677            Manhattan Entire home/apt              2                 1
## 7678             Brooklyn Entire home/apt              2                 1
## 7679               Queens    Private room              1                 3
## 7680            Manhattan    Private room              7                 2
## 7681             Brooklyn    Private room              1               107
## 7682               Queens    Private room              1               222
## 7683            Manhattan Entire home/apt             10                11
## 7684             Brooklyn    Private room              2                 9
## 7685             Brooklyn    Private room             30                 1
## 7686             Brooklyn    Private room             30                 2
## 7687             Brooklyn    Private room             30                 1
## 7688            Manhattan Entire home/apt              2                 2
## 7689                Bronx Entire home/apt              3                 8
## 7690             Brooklyn    Private room              7                 3
## 7691             Brooklyn Entire home/apt              5                 5
## 7692             Brooklyn    Private room              2                 4
## 7693             Brooklyn Entire home/apt              4                13
## 7694            Manhattan Entire home/apt              1                 4
## 7695               Queens Entire home/apt              3                29
## 7696            Manhattan Entire home/apt              3                 1
## 7697             Brooklyn    Private room              2                 5
## 7698             Brooklyn Entire home/apt              5                 5
## 7699             Brooklyn Entire home/apt              3                 8
## 7700             Brooklyn    Private room              2                99
## 7701             Brooklyn    Private room             10                14
## 7702               Queens Entire home/apt              3                17
## 7703            Manhattan Entire home/apt              5                 1
## 7704            Manhattan Entire home/apt              1                11
## 7705             Brooklyn Entire home/apt             14                 1
## 7706        Staten Island Entire home/apt              3                63
## 7707             Brooklyn    Private room              7                 6
## 7708            Manhattan    Private room              1                 1
## 7709            Manhattan Entire home/apt              3                47
## 7710             Brooklyn     Shared room              1                25
## 7711            Manhattan Entire home/apt              2                14
## 7712        Staten Island    Private room              2               100
## 7713            Manhattan Entire home/apt             15                33
## 7714             Brooklyn    Private room              1               107
## 7715            Manhattan Entire home/apt              4                11
## 7716            Manhattan Entire home/apt              3                35
## 7717             Brooklyn    Private room              4                32
## 7718             Brooklyn Entire home/apt              4               152
## 7719             Brooklyn Entire home/apt              3                35
## 7720            Manhattan Entire home/apt              6                 2
## 7721             Brooklyn    Private room              1                 1
## 7722             Brooklyn Entire home/apt              3               208
## 7723             Brooklyn    Private room              5                 4
## 7724             Brooklyn Entire home/apt              3                55
## 7725            Manhattan Entire home/apt              3               108
## 7726            Manhattan Entire home/apt              2                42
## 7727             Brooklyn    Private room              1                 1
## 7728               Queens    Private room              1                 7
## 7729             Brooklyn    Private room              1                 1
## 7730             Brooklyn    Private room              7                 1
## 7731             Brooklyn Entire home/apt              5                 2
## 7732            Manhattan Entire home/apt              3                 6
## 7733            Manhattan Entire home/apt              2                25
## 7734             Brooklyn Entire home/apt              3                 1
## 7735             Brooklyn Entire home/apt              3                27
## 7736            Manhattan    Private room              1                 5
## 7737             Brooklyn    Private room              3               181
## 7738            Manhattan Entire home/apt              2                 6
## 7739               Queens    Private room              4                28
## 7740             Brooklyn Entire home/apt              4                 6
## 7741             Brooklyn Entire home/apt             15                 9
## 7742               Queens    Private room              1                10
## 7743               Queens Entire home/apt              3                 3
## 7744             Brooklyn Entire home/apt             25                 1
## 7745             Brooklyn Entire home/apt              5                 7
## 7746             Brooklyn    Private room             21                24
## 7747            Manhattan Entire home/apt              4                16
## 7748               Queens    Private room              2                53
## 7749               Queens Entire home/apt              3                 7
## 7750               Queens Entire home/apt              2                85
## 7751               Queens Entire home/apt              4                 1
## 7752               Queens    Private room              2               262
## 7753            Manhattan Entire home/apt              5                 2
## 7754             Brooklyn    Private room              2                28
## 7755            Manhattan    Private room              7                 4
## 7756            Manhattan Entire home/apt              1                 1
## 7757             Brooklyn Entire home/apt             30                 6
## 7758             Brooklyn    Private room             91                42
## 7759            Manhattan    Private room              4                12
## 7760             Brooklyn    Private room              2                48
## 7761             Brooklyn    Private room              2                10
## 7762            Manhattan Entire home/apt              1                 6
## 7763               Queens    Private room              2                16
## 7764             Brooklyn Entire home/apt              4                 4
## 7765            Manhattan Entire home/apt             30                 2
## 7766             Brooklyn Entire home/apt              2               157
## 7767            Manhattan    Private room              1               176
## 7768            Manhattan    Private room              1               182
## 7769             Brooklyn    Private room              1                 1
## 7770             Brooklyn Entire home/apt              2                 8
## 7771               Queens Entire home/apt              5                 4
## 7772            Manhattan    Private room              1                 1
## 7773            Manhattan    Private room              1               179
## 7774            Manhattan    Private room              1               134
## 7775             Brooklyn    Private room              1               238
## 7776             Brooklyn Entire home/apt             10                 8
## 7777             Brooklyn Entire home/apt              2                20
## 7778             Brooklyn    Private room             10                 1
## 7779            Manhattan    Private room              1               192
## 7780            Manhattan    Private room              1               162
## 7781            Manhattan    Private room              1               201
## 7782            Manhattan    Private room              1               200
## 7783             Brooklyn    Private room              1                12
## 7784            Manhattan    Private room              1               203
## 7785            Manhattan    Private room              1               153
## 7786            Manhattan    Private room              1               189
## 7787             Brooklyn Entire home/apt              3                18
## 7788            Manhattan    Private room              2               105
## 7789             Brooklyn    Private room              8                 6
## 7790             Brooklyn Entire home/apt              5                 3
## 7791            Manhattan    Private room              2                 8
## 7792             Brooklyn Entire home/apt              5                 3
## 7793             Brooklyn Entire home/apt              7                 1
## 7794            Manhattan Entire home/apt              6                 4
## 7795             Brooklyn    Private room              2                59
## 7796            Manhattan Entire home/apt              5                 4
## 7797               Queens    Private room              2                92
## 7798             Brooklyn    Private room              5                 4
## 7799             Brooklyn Entire home/apt              6                 1
## 7800             Brooklyn    Private room              2                36
## 7801               Queens Entire home/apt              1               229
## 7802            Manhattan Entire home/apt              4                11
## 7803             Brooklyn Entire home/apt              4                15
## 7804             Brooklyn Entire home/apt              2                24
## 7805               Queens Entire home/apt              5                 8
## 7806             Brooklyn Entire home/apt              1                 1
## 7807             Brooklyn    Private room              5                32
## 7808             Brooklyn    Private room              6                31
## 7809            Manhattan    Private room              1                 1
## 7810             Brooklyn Entire home/apt              3               144
## 7811             Brooklyn    Private room             14                 1
## 7812             Brooklyn Entire home/apt              4                 1
## 7813            Manhattan    Private room              1                17
## 7814            Manhattan Entire home/apt              3                 4
## 7815            Manhattan Entire home/apt              4                 5
## 7816            Manhattan Entire home/apt              1                18
## 7817             Brooklyn Entire home/apt              2                23
## 7818             Brooklyn    Private room              5                 2
## 7819            Manhattan Entire home/apt             14                 1
## 7820             Brooklyn Entire home/apt              2               150
## 7821            Manhattan    Private room              1                 6
## 7822            Manhattan Entire home/apt              3                 6
## 7823            Manhattan Entire home/apt              1                 6
## 7824             Brooklyn Entire home/apt              3                93
## 7825             Brooklyn    Private room             20                 6
## 7826            Manhattan    Private room              3                 1
## 7827            Manhattan Entire home/apt              3                18
## 7828             Brooklyn Entire home/apt              3                 2
## 7829            Manhattan Entire home/apt              2               106
## 7830            Manhattan Entire home/apt              2                 2
## 7831             Brooklyn Entire home/apt              4               148
## 7832             Brooklyn    Private room              7                 2
## 7833             Brooklyn    Private room              1                 2
## 7834            Manhattan Entire home/apt             14                 1
## 7835            Manhattan    Private room              2                68
## 7836            Manhattan    Private room              2                14
## 7837             Brooklyn Entire home/apt              3                 8
## 7838            Manhattan Entire home/apt              2                 5
## 7839             Brooklyn Entire home/apt              2                 2
## 7840             Brooklyn Entire home/apt             29                16
## 7841            Manhattan Entire home/apt              2                 2
## 7842            Manhattan    Private room              3                68
## 7843            Manhattan Entire home/apt              2                22
## 7844             Brooklyn    Private room              3                 9
## 7845             Brooklyn Entire home/apt              1                 8
## 7846            Manhattan Entire home/apt             30                17
## 7847             Brooklyn Entire home/apt              4                93
## 7848            Manhattan    Private room              2                27
## 7849               Queens    Private room             15                 1
## 7850            Manhattan Entire home/apt              3                20
## 7851            Manhattan    Private room              1                18
## 7852             Brooklyn Entire home/apt              1                 1
## 7853             Brooklyn Entire home/apt              2                 2
## 7854            Manhattan    Private room              2                 1
## 7855            Manhattan Entire home/apt              2                17
## 7856               Queens Entire home/apt              2                13
## 7857            Manhattan Entire home/apt              1                17
## 7858             Brooklyn    Private room              1                 1
## 7859             Brooklyn    Private room              3                 8
## 7860             Brooklyn    Private room              1                 1
## 7861             Brooklyn    Private room              2                32
## 7862             Brooklyn    Private room              2                 2
## 7863            Manhattan Entire home/apt              3                13
## 7864            Manhattan    Private room              1                 1
## 7865             Brooklyn Entire home/apt              2               224
## 7866             Brooklyn Entire home/apt              2                15
## 7867             Brooklyn    Private room             27                 3
## 7868             Brooklyn Entire home/apt              5                 4
## 7869             Brooklyn    Private room              3                51
## 7870            Manhattan Entire home/apt              3                 6
## 7871             Brooklyn Entire home/apt              7                 5
## 7872            Manhattan    Private room              1                39
## 7873               Queens Entire home/apt              1               262
## 7874             Brooklyn Entire home/apt              2               114
## 7875             Brooklyn    Private room              1                 1
## 7876            Manhattan Entire home/apt             12                 5
## 7877             Brooklyn    Private room              2                51
## 7878             Brooklyn Entire home/apt              5                19
## 7879             Brooklyn Entire home/apt              7                 1
## 7880            Manhattan Entire home/apt             30                 6
## 7881               Queens    Private room              1               189
## 7882            Manhattan Entire home/apt              3                13
## 7883            Manhattan    Private room              1                 1
## 7884               Queens    Private room              1                 1
## 7885             Brooklyn    Private room              1                 1
## 7886             Brooklyn Entire home/apt              3               101
## 7887               Queens    Private room              4                 2
## 7888             Brooklyn Entire home/apt              1                 9
## 7889             Brooklyn    Private room             30                 3
## 7890               Queens Entire home/apt              3                 2
## 7891             Brooklyn    Private room             30                 3
## 7892            Manhattan    Private room              1                 1
## 7893               Queens    Private room              1                 1
## 7894            Manhattan Entire home/apt              7                31
## 7895            Manhattan Entire home/apt              1                 1
## 7896             Brooklyn    Private room              5                18
## 7897            Manhattan    Private room              3                 8
## 7898             Brooklyn Entire home/apt              1                 1
## 7899            Manhattan Entire home/apt              2                 3
## 7900            Manhattan Entire home/apt              2                37
## 7901             Brooklyn Entire home/apt              2                 6
## 7902             Brooklyn Entire home/apt              5                 4
## 7903             Brooklyn Entire home/apt              3                 3
## 7904            Manhattan    Private room              2                12
## 7905            Manhattan Entire home/apt              2                57
## 7906            Manhattan Entire home/apt              3                 6
## 7907             Brooklyn    Private room              7                 5
## 7908             Brooklyn    Private room              4                 2
## 7909            Manhattan    Private room              5                 1
## 7910             Brooklyn    Private room              8                 2
## 7911            Manhattan Entire home/apt             30                 7
## 7912             Brooklyn Entire home/apt              4               152
## 7913            Manhattan    Private room              3                14
## 7914               Queens Entire home/apt              4                 2
## 7915             Brooklyn Entire home/apt              7                 7
## 7916            Manhattan Entire home/apt              7                28
## 7917             Brooklyn Entire home/apt              7                 3
## 7918             Brooklyn    Private room              5                 1
## 7919            Manhattan     Shared room             30                 1
## 7920            Manhattan    Private room              6                 6
## 7921             Brooklyn Entire home/apt              3                22
## 7922            Manhattan Entire home/apt              1                15
## 7923             Brooklyn Entire home/apt             14                 3
## 7924                Bronx Entire home/apt              2                57
## 7925            Manhattan Entire home/apt              1                 8
## 7926            Manhattan Entire home/apt              7                 8
## 7927            Manhattan    Private room              5                11
## 7928             Brooklyn    Private room              3                 5
## 7929            Manhattan Entire home/apt              2                57
## 7930            Manhattan Entire home/apt              8                 3
## 7931             Brooklyn Entire home/apt              3                 2
## 7932            Manhattan    Private room              3                 1
## 7933            Manhattan    Private room              1                 1
## 7934            Manhattan Entire home/apt             31                 4
## 7935            Manhattan    Private room              5                 1
## 7936             Brooklyn Entire home/apt              1                70
## 7937               Queens Entire home/apt              2                14
## 7938            Manhattan Entire home/apt              1                 3
## 7939               Queens Entire home/apt              1                 5
## 7940             Brooklyn Entire home/apt              4                 1
## 7941            Manhattan Entire home/apt              5                 3
## 7942            Manhattan Entire home/apt              1                 4
## 7943             Brooklyn Entire home/apt             14                48
## 7944            Manhattan    Private room              3                 2
## 7945            Manhattan Entire home/apt             30                 4
## 7946             Brooklyn    Private room              4                 1
## 7947             Brooklyn Entire home/apt              2               118
## 7948            Manhattan Entire home/apt              4                10
## 7949             Brooklyn    Private room              1                20
## 7950             Brooklyn    Private room             20                42
## 7951            Manhattan Entire home/apt              3                29
## 7952            Manhattan Entire home/apt              3                10
## 7953            Manhattan Entire home/apt              3                 2
## 7954                Bronx    Private room              3                20
## 7955             Brooklyn Entire home/apt              2                23
## 7956            Manhattan    Private room             30                76
## 7957             Brooklyn Entire home/apt              1                 2
## 7958             Brooklyn Entire home/apt              7                 1
## 7959             Brooklyn Entire home/apt              4                 1
## 7960             Brooklyn    Private room             14                 9
## 7961             Brooklyn    Private room              2                29
## 7962            Manhattan Entire home/apt              7                 1
## 7963            Manhattan Entire home/apt              7                 1
## 7964            Manhattan Entire home/apt             30                12
## 7965            Manhattan Entire home/apt             30                12
## 7966               Queens    Private room              2                 8
## 7967            Manhattan Entire home/apt             30                 2
## 7968            Manhattan Entire home/apt             30                 6
## 7969            Manhattan Entire home/apt             30                10
## 7970            Manhattan Entire home/apt             30                 9
## 7971            Manhattan Entire home/apt             30                 8
## 7972            Manhattan    Private room              1                 7
## 7973            Manhattan Entire home/apt             30                10
## 7974            Manhattan Entire home/apt             30                17
## 7975             Brooklyn    Private room              7                 2
## 7976            Manhattan Entire home/apt              4                 4
## 7977             Brooklyn    Private room              7                12
## 7978             Brooklyn    Private room              1                 1
## 7979            Manhattan    Private room              3                12
## 7980               Queens    Private room              1               108
## 7981            Manhattan Entire home/apt              2                 1
## 7982               Queens    Private room              1                 5
## 7983             Brooklyn Entire home/apt              1                 6
## 7984            Manhattan    Private room              2                24
## 7985             Brooklyn Entire home/apt              1                 1
## 7986             Brooklyn    Private room              1                 1
## 7987             Brooklyn Entire home/apt              5                 3
## 7988            Manhattan    Private room              1               142
## 7989            Manhattan Entire home/apt             30                 9
## 7990            Manhattan Entire home/apt             30                 7
## 7991             Brooklyn    Private room             13                20
## 7992             Brooklyn Entire home/apt              2                12
## 7993               Queens    Private room              3                 1
## 7994            Manhattan Entire home/apt              2                25
## 7995            Manhattan Entire home/apt              2                 1
## 7996            Manhattan    Private room              2               142
## 7997            Manhattan    Private room              1                 2
## 7998            Manhattan    Private room              1                11
## 7999             Brooklyn    Private room             30                 2
## 8000             Brooklyn    Private room              3               173
## 8001             Brooklyn Entire home/apt              2                 1
## 8002             Brooklyn Entire home/apt              2                15
## 8003             Brooklyn Entire home/apt             15                 5
## 8004            Manhattan    Private room              1                 3
## 8005            Manhattan Entire home/apt              7                26
## 8006             Brooklyn    Private room              2                 4
## 8007            Manhattan Entire home/apt             14                 2
## 8008             Brooklyn    Private room              6                 1
## 8009            Manhattan Entire home/apt              3                 4
## 8010            Manhattan Entire home/apt              3                 1
## 8011             Brooklyn Entire home/apt              4                 5
## 8012               Queens    Private room            100                 2
## 8013               Queens Entire home/apt              4                 4
## 8014            Manhattan Entire home/apt              6                61
## 8015            Manhattan Entire home/apt              3                22
## 8016             Brooklyn    Private room              2               155
## 8017             Brooklyn Entire home/apt              1                 2
## 8018             Brooklyn    Private room              1                 1
## 8019             Brooklyn    Private room              2                46
## 8020            Manhattan    Private room              2                 1
## 8021             Brooklyn Entire home/apt              4                40
## 8022             Brooklyn Entire home/apt              3                 5
## 8023             Brooklyn    Private room              2                18
## 8024             Brooklyn    Private room              1                 4
## 8025             Brooklyn Entire home/apt              7                 2
## 8026            Manhattan    Private room             21                 4
## 8027            Manhattan    Private room              2                17
## 8028            Manhattan    Private room              3                 3
## 8029            Manhattan Entire home/apt              2                94
## 8030             Brooklyn Entire home/apt              2                 4
## 8031             Brooklyn    Private room             20                29
## 8032             Brooklyn Entire home/apt              7                 1
## 8033             Brooklyn Entire home/apt              3                 3
## 8034             Brooklyn Entire home/apt              3               125
## 8035            Manhattan Entire home/apt              3                 5
## 8036               Queens     Shared room              1                 1
## 8037            Manhattan Entire home/apt              5                 1
## 8038             Brooklyn    Private room              2                55
## 8039             Brooklyn Entire home/apt              5                25
## 8040            Manhattan    Private room              2                95
## 8041            Manhattan    Private room              4                 5
## 8042             Brooklyn    Private room              1               184
## 8043            Manhattan Entire home/apt              1                76
## 8044             Brooklyn Entire home/apt              6                 6
## 8045             Brooklyn    Private room              1               123
## 8046             Brooklyn    Private room              1                 3
## 8047             Brooklyn Entire home/apt             10                 2
## 8048            Manhattan    Private room              5                 4
## 8049             Brooklyn Entire home/apt              3               123
## 8050               Queens    Private room              1               209
## 8051             Brooklyn    Private room              2                34
## 8052             Brooklyn    Private room              7                49
## 8053               Queens Entire home/apt              2                89
## 8054             Brooklyn Entire home/apt              5                 4
## 8055            Manhattan Entire home/apt              4                 8
## 8056             Brooklyn Entire home/apt              1                66
## 8057            Manhattan Entire home/apt              1               177
## 8058            Manhattan Entire home/apt              5                17
## 8059            Manhattan    Private room              1                 8
## 8060            Manhattan    Private room              1                 1
## 8061               Queens Entire home/apt              2                 5
## 8062               Queens    Private room             30                 3
## 8063            Manhattan    Private room              1                86
## 8064             Brooklyn    Private room              2                77
## 8065             Brooklyn    Private room            100               128
## 8066             Brooklyn    Private room              1                 1
## 8067               Queens Entire home/apt              3                 7
## 8068            Manhattan Entire home/apt              1                84
## 8069            Manhattan Entire home/apt              1                18
## 8070            Manhattan Entire home/apt              7                 8
## 8071            Manhattan Entire home/apt              3                36
## 8072             Brooklyn    Private room              2                21
## 8073             Brooklyn    Private room              1                 1
## 8074            Manhattan    Private room              1               141
## 8075            Manhattan Entire home/apt              4                12
## 8076            Manhattan Entire home/apt              2                 7
## 8077               Queens Entire home/apt              2                 7
## 8078            Manhattan Entire home/apt             30                 2
## 8079            Manhattan Entire home/apt              3                58
## 8080             Brooklyn    Private room              3                 1
## 8081            Manhattan    Private room              3                 7
## 8082            Manhattan Entire home/apt              1                26
## 8083             Brooklyn    Private room              2                 2
## 8084             Brooklyn Entire home/apt              4                11
## 8085             Brooklyn Entire home/apt              2                 3
## 8086             Brooklyn    Private room              2               118
## 8087             Brooklyn Entire home/apt              3                 3
## 8088             Brooklyn    Private room              1                 1
## 8089             Brooklyn Entire home/apt              7                 3
## 8090            Manhattan Entire home/apt              2                 5
## 8091             Brooklyn    Private room              6                 1
## 8092            Manhattan Entire home/apt              4                 1
## 8093            Manhattan     Shared room              2               101
## 8094            Manhattan    Private room              5                 1
## 8095            Manhattan Entire home/apt              1                 7
## 8096            Manhattan    Private room              3               112
## 8097               Queens Entire home/apt              5                17
## 8098             Brooklyn Entire home/apt             29               103
## 8099             Brooklyn Entire home/apt              2                14
## 8100             Brooklyn    Private room              1                 2
## 8101               Queens Entire home/apt              4                55
## 8102            Manhattan    Private room              1                 3
## 8103             Brooklyn Entire home/apt             30                 3
## 8104             Brooklyn    Private room              1                41
## 8105             Brooklyn    Private room              2                18
## 8106            Manhattan Entire home/apt             28               160
## 8107            Manhattan Entire home/apt              4                 2
## 8108             Brooklyn Entire home/apt             30                 4
## 8109            Manhattan Entire home/apt              1                36
## 8110            Manhattan    Private room              1                 1
## 8111            Manhattan    Private room              2               178
## 8112            Manhattan Entire home/apt             30                 5
## 8113            Manhattan Entire home/apt              2                14
## 8114             Brooklyn Entire home/apt              2                 6
## 8115             Brooklyn Entire home/apt             14                 2
## 8116            Manhattan    Private room              1                 1
## 8117            Manhattan    Private room              1                51
## 8118            Manhattan    Private room              1                 1
## 8119             Brooklyn Entire home/apt              2                31
## 8120            Manhattan Entire home/apt              4                44
## 8121             Brooklyn Entire home/apt              2                38
## 8122            Manhattan Entire home/apt              5                 7
## 8123             Brooklyn Entire home/apt              7                 2
## 8124            Manhattan Entire home/apt              2                 5
## 8125            Manhattan    Private room              9                 1
## 8126             Brooklyn Entire home/apt              2                 9
## 8127            Manhattan Entire home/apt              3                 1
## 8128             Brooklyn     Shared room              2               102
## 8129             Brooklyn Entire home/apt              3                 5
## 8130             Brooklyn Entire home/apt              7                 6
## 8131             Brooklyn    Private room             11                 7
## 8132             Brooklyn    Private room              1                 4
## 8133             Brooklyn Entire home/apt              2               207
## 8134             Brooklyn    Private room              7                37
## 8135             Brooklyn    Private room              1                 2
## 8136               Queens Entire home/apt              2                77
## 8137            Manhattan Entire home/apt              3                99
## 8138             Brooklyn Entire home/apt              4                 1
## 8139               Queens    Private room              1               448
## 8140            Manhattan Entire home/apt              2                 4
## 8141               Queens Entire home/apt              4                10
## 8142             Brooklyn    Private room              3                 5
## 8143             Brooklyn    Private room              4                47
## 8144            Manhattan Entire home/apt              4                 8
## 8145             Brooklyn Entire home/apt              3                14
## 8146             Brooklyn    Private room              2                22
## 8147               Queens    Private room              2                32
## 8148             Brooklyn Entire home/apt              2               120
## 8149            Manhattan    Private room              7                11
## 8150               Queens    Private room              1                86
## 8151            Manhattan Entire home/apt             31                 8
## 8152            Manhattan    Private room              1                 1
## 8153               Queens    Private room              1                 3
## 8154             Brooklyn    Private room             14                 6
## 8155             Brooklyn    Private room              1                 6
## 8156             Brooklyn Entire home/apt              2                74
## 8157             Brooklyn Entire home/apt              2               174
## 8158             Brooklyn Entire home/apt              4                 3
## 8159             Brooklyn    Private room              1                14
## 8160            Manhattan    Private room              1               222
## 8161            Manhattan Entire home/apt              3                 9
## 8162             Brooklyn Entire home/apt              7                 3
## 8163            Manhattan Entire home/apt              3                31
## 8164            Manhattan Entire home/apt              5                 5
## 8165             Brooklyn Entire home/apt              1                 4
## 8166             Brooklyn Entire home/apt              1                 9
## 8167            Manhattan    Private room              2                17
## 8168            Manhattan Entire home/apt              1                 1
## 8169            Manhattan Entire home/apt              4                 1
## 8170             Brooklyn Entire home/apt              2                 8
## 8171            Manhattan Entire home/apt              2                 7
## 8172             Brooklyn    Private room              2                47
## 8173             Brooklyn    Private room              5                 1
## 8174             Brooklyn Entire home/apt              1                 2
## 8175            Manhattan Entire home/apt              3                11
## 8176            Manhattan    Private room              1                 4
## 8177             Brooklyn Entire home/apt              2                20
## 8178             Brooklyn Entire home/apt              2                28
## 8179            Manhattan Entire home/apt              3                42
## 8180            Manhattan Entire home/apt              3                 9
## 8181             Brooklyn Entire home/apt              1                 2
## 8182            Manhattan Entire home/apt              2                 8
## 8183            Manhattan Entire home/apt              3                 9
## 8184             Brooklyn    Private room              1                 1
## 8185             Brooklyn    Private room              1                 5
## 8186             Brooklyn Entire home/apt              2               151
## 8187            Manhattan    Private room              6                 1
## 8188            Manhattan Entire home/apt             10                25
## 8189             Brooklyn Entire home/apt              3                91
## 8190             Brooklyn    Private room              2               262
## 8191             Brooklyn    Private room              2               152
## 8192             Brooklyn Entire home/apt              2                 4
## 8193            Manhattan Entire home/apt              3                18
## 8194             Brooklyn Entire home/apt              2                 3
## 8195             Brooklyn Entire home/apt              3                17
## 8196            Manhattan Entire home/apt             10                10
## 8197             Brooklyn    Private room              2                11
## 8198            Manhattan    Private room              3                95
## 8199             Brooklyn    Private room              2                 6
## 8200             Brooklyn Entire home/apt              2               117
## 8201               Queens    Private room              3                 4
## 8202            Manhattan    Private room              8                 3
## 8203            Manhattan    Private room              2                 3
## 8204             Brooklyn Entire home/apt              1                 5
## 8205             Brooklyn    Private room             15                 4
## 8206             Brooklyn Entire home/apt              2                 1
## 8207             Brooklyn    Private room              3                30
## 8208             Brooklyn Entire home/apt              7                 1
## 8209            Manhattan    Private room              2                 2
## 8210             Brooklyn Entire home/apt              2                18
## 8211             Brooklyn    Private room              2                 3
## 8212             Brooklyn    Private room              1                15
## 8213            Manhattan Entire home/apt             30                10
## 8214            Manhattan Entire home/apt              4               206
## 8215             Brooklyn    Private room              2                56
## 8216             Brooklyn    Private room              1                34
## 8217            Manhattan    Private room             30                66
## 8218             Brooklyn    Private room              4                 3
## 8219             Brooklyn Entire home/apt              7                11
## 8220             Brooklyn Entire home/apt              3                14
## 8221            Manhattan    Private room              1                 1
## 8222            Manhattan Entire home/apt              5                 5
## 8223            Manhattan Entire home/apt             25                 1
## 8224             Brooklyn Entire home/apt              5                 9
## 8225            Manhattan Entire home/apt             30                10
## 8226            Manhattan Entire home/apt              7                 2
## 8227             Brooklyn    Private room              2                 6
## 8228             Brooklyn Entire home/apt              5                49
## 8229            Manhattan    Private room              1                 3
## 8230            Manhattan    Private room              1                 9
## 8231             Brooklyn Entire home/apt              6                 3
## 8232            Manhattan Entire home/apt              3                18
## 8233            Manhattan Entire home/apt              3                44
## 8234               Queens Entire home/apt              3               139
## 8235            Manhattan    Private room              1                13
## 8236             Brooklyn    Private room              5                 1
## 8237             Brooklyn Entire home/apt              4                 5
## 8238             Brooklyn Entire home/apt              5                12
## 8239             Brooklyn    Private room              3                 7
## 8240            Manhattan    Private room              1               147
## 8241            Manhattan Entire home/apt              2                30
## 8242            Manhattan Entire home/apt             21                17
## 8243            Manhattan Entire home/apt              2                13
## 8244            Manhattan Entire home/apt              1                 1
## 8245             Brooklyn    Private room              1               204
## 8246            Manhattan Entire home/apt              1                 1
## 8247             Brooklyn    Private room              3                87
## 8248             Brooklyn    Private room              1                 2
## 8249            Manhattan Entire home/apt              1                13
## 8250            Manhattan Entire home/apt              4                 2
## 8251             Brooklyn    Private room              1                 1
## 8252            Manhattan Entire home/apt              5                12
## 8253             Brooklyn    Private room              5               102
## 8254            Manhattan    Private room              3                11
## 8255             Brooklyn Entire home/apt              2                11
## 8256            Manhattan     Shared room              1                 2
## 8257            Manhattan Entire home/apt              1               150
## 8258             Brooklyn    Private room              1                 6
## 8259             Brooklyn    Private room              1                 3
## 8260             Brooklyn Entire home/apt              3               163
## 8261            Manhattan Entire home/apt              2                 5
## 8262               Queens    Private room              1               211
## 8263             Brooklyn Entire home/apt              9                 2
## 8264            Manhattan    Private room              1                 3
## 8265            Manhattan    Private room              1                 1
## 8266             Brooklyn Entire home/apt              5                 1
## 8267               Queens Entire home/apt             30               130
## 8268            Manhattan Entire home/apt              2                48
## 8269             Brooklyn    Private room              1                13
## 8270               Queens    Private room              3               137
## 8271             Brooklyn    Private room              7                 3
## 8272            Manhattan Entire home/apt              5                13
## 8273            Manhattan Entire home/apt              3                 2
## 8274             Brooklyn Entire home/apt              3                 2
## 8275            Manhattan Entire home/apt              1                69
## 8276             Brooklyn    Private room              4                 5
## 8277             Brooklyn    Private room              2                 4
## 8278             Brooklyn    Private room              1                 1
## 8279            Manhattan    Private room              1                 1
## 8280            Manhattan    Private room              3                 8
## 8281             Brooklyn    Private room              1                 1
## 8282            Manhattan Entire home/apt             30                48
## 8283             Brooklyn Entire home/apt              3                11
## 8284             Brooklyn Entire home/apt              3                 1
## 8285             Brooklyn Entire home/apt              1                 1
## 8286             Brooklyn Entire home/apt              2                 1
## 8287            Manhattan Entire home/apt             23                 1
## 8288             Brooklyn Entire home/apt              2                 3
## 8289            Manhattan Entire home/apt              2                24
## 8290             Brooklyn    Private room              7                 7
## 8291            Manhattan Entire home/apt              5                22
## 8292            Manhattan    Private room             30                 3
## 8293            Manhattan    Private room              3                86
## 8294            Manhattan Entire home/apt              1                 4
## 8295             Brooklyn    Private room              2                42
## 8296             Brooklyn    Private room              1                 2
## 8297            Manhattan    Private room              5                 5
## 8298               Queens    Private room              1                 1
## 8299               Queens    Private room              1                 2
## 8300            Manhattan Entire home/apt              4                21
## 8301             Brooklyn    Private room              1                 8
## 8302            Manhattan    Private room              3                 5
## 8303             Brooklyn Entire home/apt              3                58
## 8304            Manhattan Entire home/apt              1                 1
## 8305             Brooklyn Entire home/apt              2                 4
## 8306            Manhattan Entire home/apt              1                 2
## 8307             Brooklyn    Private room              2                56
## 8308             Brooklyn Entire home/apt              2                 2
## 8309            Manhattan    Private room              7                12
## 8310            Manhattan Entire home/apt              4                 7
## 8311             Brooklyn Entire home/apt              3                10
## 8312            Manhattan Entire home/apt              6                14
## 8313            Manhattan    Private room              2                33
## 8314               Queens Entire home/apt              1                74
## 8315             Brooklyn Entire home/apt              3                 5
## 8316            Manhattan Entire home/apt              3               111
## 8317            Manhattan    Private room              1                10
## 8318            Manhattan Entire home/apt             30                 1
## 8319            Manhattan Entire home/apt              2                30
## 8320            Manhattan Entire home/apt              3                14
## 8321             Brooklyn Entire home/apt              3                 7
## 8322               Queens Entire home/apt              3                 6
## 8323            Manhattan Entire home/apt              7                 2
## 8324             Brooklyn    Private room              4                27
## 8325             Brooklyn Entire home/apt              4                34
## 8326                Bronx Entire home/apt              1               142
## 8327            Manhattan Entire home/apt              2                 3
## 8328            Manhattan    Private room              2                97
## 8329            Manhattan Entire home/apt              2                 2
## 8330             Brooklyn Entire home/apt              3                 6
## 8331            Manhattan    Private room              4                 1
## 8332             Brooklyn    Private room              5                 1
## 8333            Manhattan Entire home/apt              1                 1
## 8334             Brooklyn    Private room              2                 7
## 8335             Brooklyn Entire home/apt              1                 1
## 8336             Brooklyn    Private room              1               211
## 8337             Brooklyn    Private room              3                71
## 8338            Manhattan    Private room              1                 4
## 8339            Manhattan    Private room              6                 1
## 8340            Manhattan     Shared room              2                 2
## 8341             Brooklyn Entire home/apt              7                 6
## 8342            Manhattan    Private room              2               148
## 8343            Manhattan    Private room              1                 2
## 8344             Brooklyn Entire home/apt              1                 2
## 8345             Brooklyn    Private room              3                 2
## 8346            Manhattan Entire home/apt              5                21
## 8347             Brooklyn Entire home/apt              7                 2
## 8348            Manhattan    Private room              1                 1
## 8349            Manhattan Entire home/apt              1                 6
## 8350            Manhattan    Private room              5                 2
## 8351            Manhattan    Private room              1                 1
## 8352             Brooklyn    Private room              2                 8
## 8353            Manhattan Entire home/apt              3                20
## 8354            Manhattan Entire home/apt              1                19
## 8355            Manhattan    Private room              7                11
## 8356             Brooklyn Entire home/apt              4                 1
## 8357            Manhattan    Private room              2                 4
## 8358             Brooklyn    Private room              1               113
## 8359             Brooklyn Entire home/apt              2                34
## 8360             Brooklyn    Private room              2                 9
## 8361             Brooklyn    Private room              1                24
## 8362            Manhattan    Private room              5                 2
## 8363             Brooklyn    Private room              3                14
## 8364            Manhattan    Private room              2                 2
## 8365            Manhattan    Private room              1                 2
## 8366            Manhattan    Private room              1                 2
## 8367               Queens    Private room              3                 3
## 8368             Brooklyn Entire home/apt              1                 4
## 8369            Manhattan Entire home/apt              1                 9
## 8370            Manhattan    Private room              1                 1
## 8371             Brooklyn Entire home/apt              2                45
## 8372             Brooklyn    Private room              2                74
## 8373            Manhattan    Private room              1                18
## 8374             Brooklyn Entire home/apt              7                 2
## 8375             Brooklyn    Private room              1                 3
## 8376             Brooklyn Entire home/apt              1                 1
## 8377            Manhattan    Private room             30                 2
## 8378            Manhattan Entire home/apt              1                 1
## 8379            Manhattan Entire home/apt             30                 2
## 8380            Manhattan    Private room              1                 2
## 8381             Brooklyn Entire home/apt              1                 6
## 8382             Brooklyn Entire home/apt              2                23
## 8383             Brooklyn    Private room              3                 2
## 8384               Queens Entire home/apt              1                 3
## 8385             Brooklyn Entire home/apt              1                11
## 8386            Manhattan Entire home/apt              3                14
## 8387            Manhattan Entire home/apt              3                 1
## 8388            Manhattan    Private room             28                 1
## 8389            Manhattan Entire home/apt              4                 3
## 8390            Manhattan    Private room              3                62
## 8391             Brooklyn Entire home/apt              2                28
## 8392             Brooklyn    Private room              3                 2
## 8393             Brooklyn Entire home/apt              1                 7
## 8394             Brooklyn Entire home/apt              3               130
## 8395            Manhattan    Private room              2                 1
## 8396            Manhattan Entire home/apt              2                 2
## 8397            Manhattan Entire home/apt              3                21
## 8398            Manhattan Entire home/apt              7                 1
## 8399             Brooklyn Entire home/apt              3                 6
## 8400            Manhattan Entire home/apt              1                 1
## 8401               Queens Entire home/apt              1                 9
## 8402             Brooklyn Entire home/apt              3               178
## 8403            Manhattan    Private room             31                 1
## 8404            Manhattan    Private room             31                 3
## 8405             Brooklyn    Private room              1                22
## 8406            Manhattan    Private room              1                 2
## 8407             Brooklyn    Private room              3                 4
## 8408               Queens    Private room              1                 1
## 8409            Manhattan    Private room              1                15
## 8410             Brooklyn    Private room              5                 3
## 8411            Manhattan Entire home/apt              5                 1
## 8412             Brooklyn    Private room              3                 4
## 8413             Brooklyn Entire home/apt              2               106
## 8414             Brooklyn Entire home/apt              2                 6
## 8415             Brooklyn    Private room              2                59
## 8416            Manhattan Entire home/apt              2                30
## 8417             Brooklyn Entire home/apt              5                 2
## 8418            Manhattan    Private room              4                16
## 8419               Queens    Private room              1                28
## 8420            Manhattan    Private room              1                 2
## 8421             Brooklyn Entire home/apt              1                 3
## 8422             Brooklyn Entire home/apt              3                 5
## 8423             Brooklyn Entire home/apt              1                 1
## 8424             Brooklyn    Private room              1               258
## 8425             Brooklyn Entire home/apt              2                36
## 8426             Brooklyn    Private room              1                12
## 8427            Manhattan    Private room              1                 1
## 8428             Brooklyn Entire home/apt              3                65
## 8429            Manhattan Entire home/apt              5                17
## 8430            Manhattan Entire home/apt              3                30
## 8431             Brooklyn Entire home/apt              3               109
## 8432             Brooklyn Entire home/apt              2                 6
## 8433            Manhattan Entire home/apt              2               145
## 8434             Brooklyn Entire home/apt              1                 6
## 8435             Brooklyn Entire home/apt              7                10
## 8436             Brooklyn    Private room              3                 7
## 8437             Brooklyn Entire home/apt              1               191
## 8438             Brooklyn    Private room              1               119
## 8439             Brooklyn Entire home/apt              3                56
## 8440             Brooklyn    Private room              1               213
## 8441             Brooklyn Entire home/apt              2               149
## 8442             Brooklyn Entire home/apt              3               105
## 8443            Manhattan    Private room              1                 4
## 8444             Brooklyn Entire home/apt              3                 4
## 8445             Brooklyn Entire home/apt              6                34
## 8446             Brooklyn Entire home/apt              3                 1
## 8447               Queens    Private room              4                42
## 8448             Brooklyn Entire home/apt              7                 9
## 8449             Brooklyn    Private room              8                 7
## 8450             Brooklyn    Private room              3                 8
## 8451             Brooklyn    Private room              2                24
## 8452             Brooklyn Entire home/apt              2                 7
## 8453             Brooklyn Entire home/apt              1                 4
## 8454            Manhattan Entire home/apt              3                94
## 8455            Manhattan Entire home/apt              4                38
## 8456            Manhattan    Private room              1                 6
## 8457             Brooklyn Entire home/apt              3                 1
## 8458             Brooklyn Entire home/apt              2                15
## 8459             Brooklyn Entire home/apt              5                71
## 8460            Manhattan Entire home/apt              3               149
## 8461             Brooklyn Entire home/apt              3                 4
## 8462            Manhattan    Private room             25                 4
## 8463             Brooklyn Entire home/apt              1                 1
## 8464             Brooklyn    Private room              1                23
## 8465               Queens Entire home/apt              4                 1
## 8466            Manhattan Entire home/apt             30                 3
## 8467            Manhattan Entire home/apt              4                19
## 8468             Brooklyn Entire home/apt              1                 4
## 8469            Manhattan Entire home/apt              4                 4
## 8470            Manhattan Entire home/apt              3                 2
## 8471            Manhattan    Private room              1                 7
## 8472            Manhattan Entire home/apt             30                 4
## 8473             Brooklyn Entire home/apt              3               135
## 8474             Brooklyn    Private room              1                 1
## 8475             Brooklyn    Private room              1                 1
## 8476            Manhattan    Private room              2                31
## 8477             Brooklyn Entire home/apt              2                13
## 8478            Manhattan    Private room              1                 3
## 8479             Brooklyn Entire home/apt              3                64
## 8480             Brooklyn    Private room              2                 1
## 8481             Brooklyn Entire home/apt              5                12
## 8482             Brooklyn Entire home/apt              4                54
## 8483             Brooklyn    Private room              3                 3
## 8484                Bronx    Private room             30                15
## 8485            Manhattan Entire home/apt              2                 1
## 8486                Bronx    Private room             30                21
## 8487            Manhattan    Private room              3               134
## 8488             Brooklyn    Private room              2                24
## 8489            Manhattan    Private room              3                 9
## 8490            Manhattan Entire home/apt              2                12
## 8491             Brooklyn    Private room             14                15
## 8492            Manhattan    Private room              7                51
## 8493             Brooklyn Entire home/apt              2                19
## 8494             Brooklyn    Private room              5                 5
## 8495             Brooklyn    Private room              1                 3
## 8496             Brooklyn    Private room              1                 7
## 8497             Brooklyn    Private room              8                 1
## 8498            Manhattan Entire home/apt              1                10
## 8499             Brooklyn Entire home/apt             30                23
## 8500            Manhattan    Private room              1                 1
## 8501            Manhattan Entire home/apt              1                 3
## 8502            Manhattan    Private room              2               183
## 8503            Manhattan    Private room              2                 1
## 8504            Manhattan    Private room              2                20
## 8505            Manhattan    Private room              3                27
## 8506             Brooklyn    Private room              1                 2
## 8507            Manhattan Entire home/apt              1                 3
## 8508             Brooklyn Entire home/apt              2                60
## 8509            Manhattan Entire home/apt              3               203
## 8510            Manhattan    Private room              4                37
## 8511             Brooklyn Entire home/apt             14                 2
## 8512             Brooklyn    Private room              2                96
## 8513             Brooklyn Entire home/apt              5                 2
## 8514             Brooklyn    Private room              1               107
## 8515            Manhattan    Private room              1                12
## 8516            Manhattan Entire home/apt              2                 1
## 8517            Manhattan Entire home/apt              4                68
## 8518            Manhattan Entire home/apt              2                 7
## 8519             Brooklyn    Private room              2                30
## 8520            Manhattan Entire home/apt              3                19
## 8521            Manhattan Entire home/apt             14                 7
## 8522            Manhattan Entire home/apt              3                 4
## 8523             Brooklyn Entire home/apt              2                63
## 8524            Manhattan    Private room             16                 9
## 8525             Brooklyn    Private room              1               140
## 8526            Manhattan Entire home/apt              2               193
## 8527               Queens Entire home/apt              2                 6
## 8528            Manhattan Entire home/apt              5                12
## 8529            Manhattan    Private room              1               151
## 8530             Brooklyn Entire home/apt             30                 7
## 8531            Manhattan    Private room              1                 1
## 8532             Brooklyn Entire home/apt             30                 7
## 8533             Brooklyn    Private room              2                 5
## 8534               Queens Entire home/apt              3               109
## 8535            Manhattan Entire home/apt              5                16
## 8536            Manhattan    Private room              4                45
## 8537               Queens    Private room              2                 7
## 8538             Brooklyn    Private room              4                 8
## 8539             Brooklyn    Private room             30                20
## 8540             Brooklyn    Private room             30                31
## 8541                Bronx Entire home/apt              1                 1
## 8542            Manhattan Entire home/apt              1                 7
## 8543             Brooklyn Entire home/apt              5                 4
## 8544             Brooklyn Entire home/apt              3               125
## 8545             Brooklyn    Private room              1                66
## 8546             Brooklyn    Private room              1                 1
## 8547               Queens    Private room              1               158
## 8548            Manhattan Entire home/apt              2                 4
## 8549            Manhattan Entire home/apt              1                 1
## 8550            Manhattan Entire home/apt              3                39
## 8551            Manhattan    Private room              1               142
## 8552             Brooklyn Entire home/apt              2                 5
## 8553             Brooklyn Entire home/apt              1                 3
## 8554            Manhattan Entire home/apt              3                 1
## 8555             Brooklyn    Private room             15                 2
## 8556             Brooklyn    Private room              2               186
## 8557            Manhattan    Private room             30                27
## 8558            Manhattan Entire home/apt              3                 1
## 8559            Manhattan Entire home/apt              1                26
## 8560             Brooklyn    Private room             21                16
## 8561            Manhattan Entire home/apt              3                 1
## 8562             Brooklyn    Private room              2                 2
## 8563               Queens    Private room              1                63
## 8564             Brooklyn Entire home/apt              2                21
## 8565             Brooklyn Entire home/apt              2               172
## 8566               Queens Entire home/apt              2               108
## 8567            Manhattan    Private room              2                18
## 8568             Brooklyn Entire home/apt             60                 1
## 8569               Queens    Private room              4                28
## 8570            Manhattan    Private room              3                 1
## 8571             Brooklyn    Private room             14                10
## 8572             Brooklyn Entire home/apt              4                 7
## 8573             Brooklyn Entire home/apt              7                33
## 8574            Manhattan Entire home/apt              1                75
## 8575            Manhattan Entire home/apt              3                 6
## 8576            Manhattan Entire home/apt              2                18
## 8577            Manhattan Entire home/apt              5                 1
## 8578            Manhattan    Private room              2               259
## 8579             Brooklyn    Private room              1                15
## 8580            Manhattan Entire home/apt              7                 9
## 8581            Manhattan Entire home/apt              3                90
## 8582            Manhattan    Private room              4                 3
## 8583            Manhattan    Private room              2                 2
## 8584            Manhattan    Private room             30                44
## 8585            Manhattan    Private room              5                42
## 8586            Manhattan Entire home/apt              6                13
## 8587             Brooklyn Entire home/apt              2               187
## 8588             Brooklyn Entire home/apt              6                 8
## 8589             Brooklyn    Private room              1                 1
## 8590             Brooklyn    Private room              1                 4
## 8591            Manhattan Entire home/apt              4                 4
## 8592             Brooklyn Entire home/apt              2               132
## 8593            Manhattan    Private room              1                 2
## 8594             Brooklyn    Private room              1                 1
## 8595             Brooklyn    Private room              3                60
## 8596               Queens Entire home/apt             10                 7
## 8597            Manhattan    Private room              7                 9
## 8598            Manhattan    Private room              3                17
## 8599             Brooklyn    Private room              1                 2
## 8600             Brooklyn    Private room              7                 2
## 8601            Manhattan Entire home/apt              1               161
## 8602               Queens    Private room              3                 8
## 8603             Brooklyn    Private room              3                 3
## 8604            Manhattan    Private room              3                19
## 8605            Manhattan Entire home/apt             10                 2
## 8606             Brooklyn    Private room              2                 2
## 8607             Brooklyn Entire home/apt              3                84
## 8608            Manhattan Entire home/apt              2                11
## 8609            Manhattan Entire home/apt              2                 4
## 8610               Queens Entire home/apt              7                 9
## 8611            Manhattan Entire home/apt              1                 1
## 8612            Manhattan    Private room              2                 2
## 8613               Queens    Private room              3                13
## 8614               Queens    Private room              1                32
## 8615             Brooklyn Entire home/apt              2                 6
## 8616            Manhattan    Private room              3                 6
## 8617             Brooklyn Entire home/apt              2                 3
## 8618             Brooklyn Entire home/apt             30                 7
## 8619             Brooklyn    Private room              5                 3
## 8620             Brooklyn    Private room              3                90
## 8621             Brooklyn Entire home/apt              3                 5
## 8622             Brooklyn    Private room              1                43
## 8623             Brooklyn    Private room              5                 5
## 8624            Manhattan Entire home/apt              5                10
## 8625            Manhattan    Private room              1                 2
## 8626             Brooklyn Entire home/apt              2               139
## 8627            Manhattan Entire home/apt              4                 5
## 8628             Brooklyn    Private room              2                33
## 8629            Manhattan Entire home/apt              2                23
## 8630            Manhattan    Private room              1                 2
## 8631             Brooklyn Entire home/apt             59                17
## 8632             Brooklyn    Private room              1               237
## 8633             Brooklyn    Private room             30                19
## 8634            Manhattan Entire home/apt             30               195
## 8635               Queens Entire home/apt              3                21
## 8636             Brooklyn    Private room              1                 1
## 8637            Manhattan Entire home/apt              5                 5
## 8638             Brooklyn Entire home/apt              7                 9
## 8639             Brooklyn    Private room              3                 7
## 8640            Manhattan Entire home/apt             15                22
## 8641             Brooklyn Entire home/apt              7                35
## 8642             Brooklyn    Private room              1                 3
## 8643             Brooklyn    Private room              2                22
## 8644            Manhattan Entire home/apt              5                12
## 8645            Manhattan Entire home/apt              2                 2
## 8646             Brooklyn     Shared room              1                73
## 8647               Queens    Private room              1               190
## 8648             Brooklyn    Private room              1                35
## 8649             Brooklyn    Private room              1                 2
## 8650               Queens Entire home/apt              3                 2
## 8651             Brooklyn Entire home/apt              7                11
## 8652               Queens    Private room              1               424
## 8653             Brooklyn Entire home/apt              2                 4
## 8654               Queens    Private room              1               408
## 8655            Manhattan    Private room              1                 6
## 8656            Manhattan    Private room              2                14
## 8657            Manhattan    Private room              1                26
## 8658            Manhattan    Private room              1                 1
## 8659             Brooklyn Entire home/apt              3                 4
## 8660             Brooklyn Entire home/apt              2                 3
## 8661             Brooklyn    Private room              5                 1
## 8662             Brooklyn    Private room              1               128
## 8663               Queens Entire home/apt              2                 7
## 8664               Queens Entire home/apt              2                 5
## 8665            Manhattan    Private room              1                 2
## 8666            Manhattan Entire home/apt              2                49
## 8667             Brooklyn Entire home/apt              3                10
## 8668             Brooklyn Entire home/apt             30                11
## 8669             Brooklyn Entire home/apt              3               120
## 8670                Bronx    Private room              1               182
## 8671             Brooklyn Entire home/apt              5                27
## 8672             Brooklyn Entire home/apt              3                23
## 8673            Manhattan    Private room              2                 1
## 8674             Brooklyn Entire home/apt              5                 2
## 8675             Brooklyn Entire home/apt              3               105
## 8676                Bronx    Private room             30                19
## 8677             Brooklyn    Private room              1               205
## 8678            Manhattan    Private room              3                 4
## 8679             Brooklyn    Private room              1                 2
## 8680             Brooklyn    Private room              2                12
## 8681            Manhattan Entire home/apt              3                10
## 8682             Brooklyn Entire home/apt              3                38
## 8683            Manhattan    Private room              1                 5
## 8684             Brooklyn Entire home/apt              4                99
## 8685             Brooklyn    Private room              3                 1
## 8686            Manhattan    Private room              1                 9
## 8687             Brooklyn    Private room              3                 1
## 8688             Brooklyn Entire home/apt              3                96
## 8689             Brooklyn Entire home/apt              2                 3
## 8690             Brooklyn Entire home/apt              3                98
## 8691            Manhattan    Private room              3                29
## 8692            Manhattan Entire home/apt              1                 1
## 8693            Manhattan    Private room              1                 1
## 8694             Brooklyn Entire home/apt              4                96
## 8695            Manhattan Entire home/apt              1                 1
## 8696            Manhattan    Private room              2                 1
## 8697            Manhattan    Private room              1                 2
## 8698            Manhattan Entire home/apt              2                 9
## 8699            Manhattan    Private room              1                 3
## 8700             Brooklyn Entire home/apt             30                 4
## 8701            Manhattan    Private room              6                 2
## 8702            Manhattan    Private room              2                 6
## 8703            Manhattan     Shared room              1                14
## 8704            Manhattan Entire home/apt             60                10
## 8705             Brooklyn    Private room              4                52
## 8706             Brooklyn    Private room              3                 2
## 8707               Queens Entire home/apt              2                 2
## 8708             Brooklyn Entire home/apt              4               121
## 8709             Brooklyn    Private room              1               199
## 8710            Manhattan Entire home/apt              2                 4
## 8711             Brooklyn Entire home/apt              2                 4
## 8712             Brooklyn    Private room              1                 1
## 8713             Brooklyn Entire home/apt              3                63
## 8714            Manhattan Entire home/apt              1                32
## 8715             Brooklyn Entire home/apt              4                91
## 8716            Manhattan    Private room              1               221
## 8717            Manhattan    Private room              3               174
## 8718             Brooklyn Entire home/apt              1                 2
## 8719               Queens    Private room              1                 5
## 8720            Manhattan    Private room              1                 1
## 8721               Queens Entire home/apt              1                22
## 8722               Queens    Private room              2               191
## 8723            Manhattan Entire home/apt              3                 4
## 8724             Brooklyn    Private room              3                91
## 8725            Manhattan Entire home/apt              1                14
## 8726             Brooklyn Entire home/apt              1                 2
## 8727             Brooklyn Entire home/apt              1                78
## 8728             Brooklyn Entire home/apt             30                 2
## 8729             Brooklyn    Private room              1                 2
## 8730            Manhattan Entire home/apt              5                 5
## 8731            Manhattan Entire home/apt              1                 5
## 8732             Brooklyn    Private room              2                 5
## 8733             Brooklyn Entire home/apt              4                 4
## 8734             Brooklyn Entire home/apt              2                17
## 8735             Brooklyn Entire home/apt              4                12
## 8736             Brooklyn    Private room              1                88
## 8737               Queens Entire home/apt              1                 9
## 8738            Manhattan Entire home/apt              3                12
## 8739                Bronx    Private room             30                13
## 8740            Manhattan    Private room              1                 1
## 8741             Brooklyn    Private room             10                 1
## 8742             Brooklyn Entire home/apt              5                18
## 8743            Manhattan    Private room              1                 5
## 8744            Manhattan Entire home/apt              4                91
## 8745             Brooklyn    Private room              1                 3
## 8746            Manhattan Entire home/apt              1                 2
## 8747            Manhattan Entire home/apt              1               112
## 8748            Manhattan    Private room              2                 1
## 8749               Queens    Private room              1                 1
## 8750             Brooklyn Entire home/apt              3                 2
## 8751             Brooklyn Entire home/apt              2                35
## 8752             Brooklyn Entire home/apt              2                15
## 8753             Brooklyn Entire home/apt              5                 1
## 8754            Manhattan    Private room              2                 9
## 8755            Manhattan     Shared room             14                 6
## 8756            Manhattan    Private room              1               100
## 8757             Brooklyn    Private room              1                 3
## 8758             Brooklyn    Private room              5                 2
## 8759             Brooklyn Entire home/apt              5                 1
## 8760            Manhattan    Private room              2                20
## 8761            Manhattan Entire home/apt              3                 2
## 8762            Manhattan    Private room              1                13
## 8763            Manhattan Entire home/apt              6                45
## 8764               Queens Entire home/apt             30                29
## 8765            Manhattan Entire home/apt              4                 9
## 8766             Brooklyn    Private room              4                 2
## 8767             Brooklyn Entire home/apt              5                 1
## 8768            Manhattan Entire home/apt              3                35
## 8769             Brooklyn    Private room              5                28
## 8770             Brooklyn    Private room              2                71
## 8771             Brooklyn Entire home/apt              3                 8
## 8772            Manhattan Entire home/apt             30                14
## 8773             Brooklyn    Private room              1                 4
## 8774             Brooklyn Entire home/apt              7                43
## 8775               Queens    Private room              1                96
## 8776               Queens Entire home/apt              1                10
## 8777                Bronx    Private room              3               113
## 8778            Manhattan    Private room              1                 1
## 8779             Brooklyn Entire home/apt              5                 1
## 8780               Queens Entire home/apt              1                70
## 8781               Queens Entire home/apt              2               176
## 8782            Manhattan Entire home/apt              3               115
## 8783            Manhattan Entire home/apt              4                 2
## 8784            Manhattan    Private room              4                33
## 8785            Manhattan Entire home/apt              2                 7
## 8786             Brooklyn Entire home/apt              2                 1
## 8787             Brooklyn Entire home/apt              3               120
## 8788             Brooklyn Entire home/apt              3                 9
## 8789             Brooklyn    Private room              1                11
## 8790            Manhattan Entire home/apt              2                13
## 8791             Brooklyn Entire home/apt              4                99
## 8792               Queens    Private room              4                19
## 8793             Brooklyn    Private room              7                 2
## 8794            Manhattan Entire home/apt              2                53
## 8795             Brooklyn    Private room              3                 8
## 8796             Brooklyn    Private room             30                 1
## 8797               Queens    Private room              1               179
## 8798             Brooklyn    Private room             30                 4
## 8799            Manhattan Entire home/apt              4                36
## 8800             Brooklyn    Private room             30                 2
## 8801             Brooklyn    Private room             30                 3
## 8802             Brooklyn    Private room              2                 4
## 8803             Brooklyn    Private room              2               158
## 8804            Manhattan Entire home/apt              2                48
## 8805             Brooklyn    Private room              7                 3
## 8806                Bronx    Private room              2                 5
## 8807                Bronx     Shared room              1                 1
## 8808            Manhattan    Private room              1                 1
## 8809             Brooklyn Entire home/apt              3                10
## 8810             Brooklyn Entire home/apt              1                 3
## 8811            Manhattan Entire home/apt             30                12
## 8812             Brooklyn Entire home/apt             14                10
## 8813             Brooklyn Entire home/apt              5               148
## 8814             Brooklyn    Private room              2                17
## 8815            Manhattan Entire home/apt              4                11
## 8816            Manhattan Entire home/apt              3                42
## 8817            Manhattan Entire home/apt              2                 6
## 8818               Queens Entire home/apt              2                 1
## 8819            Manhattan Entire home/apt             30                16
## 8820            Manhattan    Private room              2                 9
## 8821             Brooklyn Entire home/apt              1                28
## 8822            Manhattan    Private room              2                 1
## 8823             Brooklyn Entire home/apt              5                80
## 8824            Manhattan    Private room              3                 4
## 8825             Brooklyn Entire home/apt              1                 2
## 8826             Brooklyn Entire home/apt              2                 1
## 8827             Brooklyn    Private room              1                 1
## 8828             Brooklyn Entire home/apt              6                35
## 8829               Queens Entire home/apt              1                 2
## 8830             Brooklyn Entire home/apt              7                14
## 8831            Manhattan Entire home/apt              1                 3
## 8832            Manhattan Entire home/apt              7                44
## 8833             Brooklyn Entire home/apt              2                 4
## 8834             Brooklyn Entire home/apt             30                29
## 8835             Brooklyn    Private room              3                 5
## 8836            Manhattan Entire home/apt              4                68
## 8837            Manhattan Entire home/apt              3                 1
## 8838             Brooklyn    Private room              7                 2
## 8839            Manhattan    Private room              1                 4
## 8840             Brooklyn Entire home/apt              1                 3
## 8841            Manhattan Entire home/apt             30                22
## 8842             Brooklyn    Private room              4                 7
## 8843            Manhattan    Private room              3                 4
## 8844            Manhattan    Private room              1               205
## 8845            Manhattan    Private room              3                 6
## 8846               Queens    Private room              3                 1
## 8847             Brooklyn    Private room              2               104
## 8848               Queens    Private room              1                 1
## 8849            Manhattan    Private room              5                 2
## 8850             Brooklyn Entire home/apt              2                10
## 8851             Brooklyn    Private room              2                32
## 8852             Brooklyn Entire home/apt              2                 4
## 8853            Manhattan Entire home/apt              2                 1
## 8854             Brooklyn    Private room              5                 1
## 8855             Brooklyn    Private room              3                 1
## 8856             Brooklyn    Private room             12                 2
## 8857             Brooklyn    Private room             10                12
## 8858             Brooklyn    Private room              1               184
## 8859            Manhattan Entire home/apt              3                99
## 8860             Brooklyn Entire home/apt              2                39
## 8861            Manhattan Entire home/apt             30                 2
## 8862            Manhattan Entire home/apt              4                 4
## 8863             Brooklyn Entire home/apt             30                 5
## 8864             Brooklyn    Private room              1                 2
## 8865            Manhattan    Private room              3                 4
## 8866             Brooklyn Entire home/apt              1                40
## 8867            Manhattan    Private room              2                10
## 8868            Manhattan Entire home/apt              2                 3
## 8869             Brooklyn Entire home/apt              1                20
## 8870             Brooklyn Entire home/apt              2                27
## 8871            Manhattan Entire home/apt              2               193
## 8872             Brooklyn    Private room              3                 8
## 8873             Brooklyn    Private room              1                 1
## 8874            Manhattan Entire home/apt              3                63
## 8875             Brooklyn    Private room              2               121
## 8876             Brooklyn    Private room              2                 1
## 8877            Manhattan Entire home/apt             30                 5
## 8878            Manhattan Entire home/apt              2                 1
## 8879             Brooklyn    Private room              2                97
## 8880             Brooklyn    Private room              3                 2
## 8881        Staten Island    Private room              3                23
## 8882             Brooklyn Entire home/apt             30                 7
## 8883            Manhattan Entire home/apt              1               214
## 8884            Manhattan Entire home/apt              2                 9
## 8885            Manhattan    Private room              3                 3
## 8886            Manhattan    Private room              1               309
## 8887             Brooklyn    Private room              2                39
## 8888            Manhattan Entire home/apt              5                 9
## 8889             Brooklyn    Private room              2                92
## 8890            Manhattan Entire home/apt              2                 7
## 8891             Brooklyn    Private room             20                23
## 8892            Manhattan Entire home/apt              3                39
## 8893            Manhattan    Private room              1               148
## 8894            Manhattan Entire home/apt              2                52
## 8895            Manhattan Entire home/apt              3                 2
## 8896             Brooklyn    Private room              2                 6
## 8897            Manhattan Entire home/apt              1                 1
## 8898            Manhattan Entire home/apt              4                11
## 8899                Bronx Entire home/apt              2               152
## 8900             Brooklyn    Private room              2                99
## 8901               Queens Entire home/apt              1               227
## 8902            Manhattan Entire home/apt              1                 2
## 8903             Brooklyn    Private room              2               105
## 8904             Brooklyn Entire home/apt              4               106
## 8905               Queens Entire home/apt             30                 7
## 8906            Manhattan    Private room              1                 2
## 8907            Manhattan Entire home/apt              3                 2
## 8908            Manhattan Entire home/apt              3                 1
## 8909             Brooklyn    Private room              2               107
## 8910             Brooklyn Entire home/apt              2                 2
## 8911             Brooklyn Entire home/apt              6                28
## 8912            Manhattan Entire home/apt              7                 1
## 8913            Manhattan Entire home/apt              1                 6
## 8914            Manhattan    Private room              3                 1
## 8915            Manhattan Entire home/apt              3                 2
## 8916             Brooklyn    Private room              2                 3
## 8917             Brooklyn    Private room              2                97
## 8918               Queens Entire home/apt             30                61
## 8919             Brooklyn    Private room              2                 2
## 8920             Brooklyn Entire home/apt              3                66
## 8921               Queens    Private room              2                70
## 8922            Manhattan Entire home/apt              2                25
## 8923            Manhattan    Private room              1                 8
## 8924            Manhattan Entire home/apt              1                 1
## 8925            Manhattan    Private room              1                 5
## 8926            Manhattan Entire home/apt              7                 3
## 8927             Brooklyn    Private room              1                 2
## 8928            Manhattan Entire home/apt             15                 5
## 8929            Manhattan Entire home/apt              3                 9
## 8930             Brooklyn Entire home/apt             11                11
## 8931            Manhattan Entire home/apt              2               105
## 8932             Brooklyn    Private room              2                22
## 8933             Brooklyn    Private room              2                99
## 8934            Manhattan    Private room              1                 2
## 8935               Queens    Private room              1                 2
## 8936            Manhattan Entire home/apt              2                 5
## 8937            Manhattan    Private room              2                 1
## 8938            Manhattan    Private room             14               121
## 8939             Brooklyn    Private room              4                21
## 8940            Manhattan    Private room              4                 3
## 8941               Queens Entire home/apt              3                45
## 8942             Brooklyn Entire home/apt              3                 5
## 8943            Manhattan Entire home/apt              5                16
## 8944            Manhattan Entire home/apt              3                 9
## 8945            Manhattan    Private room              2                 3
## 8946             Brooklyn Entire home/apt              2                92
## 8947            Manhattan    Private room              5                10
## 8948             Brooklyn    Private room              1                14
## 8949             Brooklyn    Private room              2               226
## 8950             Brooklyn    Private room              1                 1
## 8951             Brooklyn    Private room              2                 3
## 8952            Manhattan    Private room              3                 3
## 8953            Manhattan    Private room              1                 1
## 8954            Manhattan Entire home/apt              1                98
## 8955            Manhattan Entire home/apt              1                 1
## 8956             Brooklyn Entire home/apt             13                 6
## 8957             Brooklyn    Private room             14                 1
## 8958             Brooklyn    Private room              1                38
## 8959             Brooklyn Entire home/apt              2                14
## 8960            Manhattan    Private room              2               114
## 8961            Manhattan    Private room              2                93
## 8962            Manhattan Entire home/apt              5                 8
## 8963            Manhattan Entire home/apt              3                 1
## 8964             Brooklyn    Private room              2               153
## 8965             Brooklyn    Private room              2               232
## 8966             Brooklyn    Private room              6                10
## 8967             Brooklyn Entire home/apt              1                 1
## 8968             Brooklyn Entire home/apt              2                11
## 8969             Brooklyn Entire home/apt              3                20
## 8970            Manhattan    Private room              7                42
## 8971             Brooklyn    Private room              3                 5
## 8972             Brooklyn    Private room              2               151
## 8973             Brooklyn    Private room              1                21
## 8974             Brooklyn Entire home/apt              1                 2
## 8975            Manhattan Entire home/apt              1                 2
## 8976            Manhattan    Private room              1                 5
## 8977            Manhattan Entire home/apt              3               159
## 8978             Brooklyn    Private room              1                 2
## 8979                Bronx    Private room              1                73
## 8980             Brooklyn Entire home/apt             26                 9
## 8981             Brooklyn Entire home/apt              2               120
## 8982               Queens    Private room              2                25
## 8983            Manhattan Entire home/apt              4                 3
## 8984            Manhattan    Private room              2                53
## 8985             Brooklyn    Private room              2                 2
## 8986             Brooklyn Entire home/apt             30                10
## 8987             Brooklyn Entire home/apt              2                 8
## 8988            Manhattan    Private room              1                10
## 8989            Manhattan    Private room              1                27
## 8990             Brooklyn Entire home/apt              3                 3
## 8991             Brooklyn Entire home/apt              2                 4
## 8992               Queens Entire home/apt              1                 9
## 8993             Brooklyn    Private room              4                22
## 8994            Manhattan Entire home/apt              1                15
## 8995            Manhattan Entire home/apt              3                68
## 8996             Brooklyn    Private room              2                 1
## 8997               Queens    Private room             10                 8
## 8998            Manhattan Entire home/apt              3                 3
## 8999             Brooklyn    Private room              1                 1
## 9000             Brooklyn Entire home/apt              3                77
## 9001            Manhattan    Private room              3               250
## 9002             Brooklyn Entire home/apt              2                 5
## 9003             Brooklyn    Private room              1                22
## 9004               Queens Entire home/apt              2                 4
## 9005             Brooklyn Entire home/apt              4                 2
## 9006            Manhattan Entire home/apt             30                12
## 9007             Brooklyn Entire home/apt              6                 2
## 9008            Manhattan    Private room              1                 3
## 9009             Brooklyn Entire home/apt              2                85
## 9010            Manhattan Entire home/apt              5                95
## 9011             Brooklyn Entire home/apt              5                11
## 9012             Brooklyn    Private room              1               197
## 9013               Queens Entire home/apt              1                 2
## 9014            Manhattan Entire home/apt              2                26
## 9015             Brooklyn Entire home/apt              3                 3
## 9016             Brooklyn Entire home/apt              1                54
## 9017             Brooklyn Entire home/apt              2                 8
## 9018            Manhattan Entire home/apt              3                15
## 9019             Brooklyn    Private room              3                14
## 9020             Brooklyn Entire home/apt             13                 8
## 9021            Manhattan Entire home/apt              3               109
## 9022             Brooklyn    Private room              5                14
## 9023             Brooklyn    Private room              2               173
## 9024             Brooklyn    Private room              1                 3
## 9025             Brooklyn    Private room              1                 2
## 9026            Manhattan    Private room              1                32
## 9027            Manhattan    Private room              2                80
## 9028             Brooklyn Entire home/apt              3                36
## 9029             Brooklyn Entire home/apt              5                11
## 9030            Manhattan     Shared room              2                 7
## 9031             Brooklyn Entire home/apt              2                24
## 9032             Brooklyn Entire home/apt              2                 9
## 9033            Manhattan Entire home/apt              6                17
## 9034            Manhattan Entire home/apt             90                 3
## 9035             Brooklyn Entire home/apt              1               287
## 9036               Queens Entire home/apt              5                 4
## 9037            Manhattan Entire home/apt              3                19
## 9038             Brooklyn     Shared room              1                59
## 9039             Brooklyn Entire home/apt             10                 2
## 9040            Manhattan Entire home/apt              1               133
## 9041            Manhattan    Private room              4                12
## 9042             Brooklyn    Private room              1                16
## 9043            Manhattan Entire home/apt              1                 3
## 9044            Manhattan    Private room              2               128
## 9045             Brooklyn Entire home/apt              1                33
## 9046            Manhattan Entire home/apt             15                 2
## 9047            Manhattan Entire home/apt              7                17
## 9048            Manhattan    Private room              1                 2
## 9049             Brooklyn    Private room              1                 1
## 9050             Brooklyn    Private room              1                 1
## 9051             Brooklyn Entire home/apt              1                 3
## 9052             Brooklyn    Private room              1                 6
## 9053            Manhattan    Private room              1                11
## 9054            Manhattan Entire home/apt              1                76
## 9055            Manhattan    Private room              1                39
## 9056             Brooklyn Entire home/apt              3                28
## 9057            Manhattan Entire home/apt              3                30
## 9058               Queens    Private room             90                15
## 9059             Brooklyn    Private room             10                 1
## 9060             Brooklyn    Private room              1                 4
## 9061             Brooklyn Entire home/apt              1                 1
## 9062             Brooklyn    Private room              1               171
## 9063            Manhattan Entire home/apt              1                 3
## 9064            Manhattan Entire home/apt              3                 4
## 9065            Manhattan    Private room              1                22
## 9066            Manhattan Entire home/apt              3                 4
## 9067            Manhattan    Private room              1                30
## 9068             Brooklyn Entire home/apt              3                 2
## 9069             Brooklyn Entire home/apt              1                 7
## 9070             Brooklyn Entire home/apt              4                54
## 9071            Manhattan Entire home/apt             30                 3
## 9072               Queens Entire home/apt              3               151
## 9073             Brooklyn    Private room              4                 2
## 9074             Brooklyn     Shared room              5                73
## 9075            Manhattan Entire home/apt              4                 6
## 9076             Brooklyn Entire home/apt              1                 3
## 9077            Manhattan Entire home/apt              4                15
## 9078             Brooklyn    Private room              5                 1
## 9079            Manhattan Entire home/apt              3                32
## 9080             Brooklyn    Private room              3                 7
## 9081             Brooklyn    Private room              1               296
## 9082             Brooklyn    Private room              1               291
## 9083             Brooklyn    Private room              1               284
## 9084            Manhattan Entire home/apt              7                27
## 9085             Brooklyn    Private room              1               291
## 9086             Brooklyn    Private room              1               327
## 9087             Brooklyn    Private room              2                67
## 9088             Brooklyn    Private room              4               115
## 9089             Brooklyn    Private room              1               107
## 9090             Brooklyn Entire home/apt              2                81
## 9091             Brooklyn Entire home/apt             31                 8
## 9092            Manhattan Entire home/apt              2                10
## 9093             Brooklyn Entire home/apt              2                15
## 9094             Brooklyn    Private room              2                 9
## 9095            Manhattan Entire home/apt              3                16
## 9096             Brooklyn    Private room              2                86
## 9097             Brooklyn Entire home/apt              2               141
## 9098             Brooklyn Entire home/apt             25                 2
## 9099             Brooklyn    Private room             10                 1
## 9100            Manhattan    Private room              6                72
## 9101             Brooklyn    Private room              3                 2
## 9102            Manhattan Entire home/apt              3                74
## 9103             Brooklyn Entire home/apt              3                60
## 9104            Manhattan Entire home/apt              4                20
## 9105             Brooklyn    Private room              7                 2
## 9106            Manhattan Entire home/apt             30                 4
## 9107               Queens Entire home/apt              3               121
## 9108            Manhattan    Private room              4                14
## 9109             Brooklyn    Private room              1                 1
## 9110             Brooklyn Entire home/apt              4                18
## 9111             Brooklyn    Private room              2                 5
## 9112            Manhattan Entire home/apt              1                 1
## 9113            Manhattan     Shared room              1               134
## 9114            Manhattan     Shared room              5                32
## 9115            Manhattan Entire home/apt             30                 9
## 9116             Brooklyn    Private room              1               222
## 9117            Manhattan Entire home/apt              1                 2
## 9118             Brooklyn Entire home/apt              2                10
## 9119             Brooklyn Entire home/apt              2                 2
## 9120             Brooklyn Entire home/apt              3                 3
## 9121            Manhattan    Private room              1                 1
## 9122            Manhattan Entire home/apt            180                15
## 9123             Brooklyn    Private room              7                 1
## 9124            Manhattan Entire home/apt              2                 2
## 9125            Manhattan Entire home/apt              7                86
## 9126            Manhattan Entire home/apt              2                 1
## 9127             Brooklyn    Private room              1                40
## 9128               Queens Entire home/apt              1                59
## 9129            Manhattan Entire home/apt              2                 2
## 9130               Queens Entire home/apt              2                13
## 9131             Brooklyn    Private room              1                 2
## 9132             Brooklyn Entire home/apt              1                 2
## 9133             Brooklyn    Private room              1                 3
## 9134               Queens    Private room              1               114
## 9135               Queens    Private room              1               102
## 9136               Queens    Private room             15                12
## 9137            Manhattan Entire home/apt             29                 9
## 9138            Manhattan Entire home/apt             31                 2
## 9139             Brooklyn Entire home/apt              3                92
## 9140            Manhattan Entire home/apt              1                 3
## 9141            Manhattan    Private room              4                81
## 9142            Manhattan    Private room              6                 5
## 9143             Brooklyn    Private room             10                 3
## 9144            Manhattan Entire home/apt              3                47
## 9145             Brooklyn Entire home/apt              3                17
## 9146             Brooklyn    Private room              1                 1
## 9147            Manhattan Entire home/apt              3                 5
## 9148            Manhattan Entire home/apt              3                 2
## 9149             Brooklyn Entire home/apt              7                14
## 9150             Brooklyn Entire home/apt              2               100
## 9151            Manhattan    Private room              1                 8
## 9152            Manhattan Entire home/apt              4                55
## 9153               Queens    Private room              1                 4
## 9154             Brooklyn Entire home/apt              1                 1
## 9155            Manhattan    Private room              3                 5
## 9156            Manhattan Entire home/apt              1                 6
## 9157             Brooklyn Entire home/apt              2                10
## 9158               Queens    Private room              4                32
## 9159             Brooklyn Entire home/apt              3                14
## 9160             Brooklyn    Private room              4                 1
## 9161             Brooklyn Entire home/apt             30                51
## 9162             Brooklyn    Private room              1                 5
## 9163             Brooklyn Entire home/apt              2                 1
## 9164             Brooklyn Entire home/apt             30                43
## 9165            Manhattan Entire home/apt              3               170
## 9166            Manhattan Entire home/apt              1               101
## 9167            Manhattan    Private room              3                 5
## 9168            Manhattan Entire home/apt              2                 3
## 9169            Manhattan    Private room              2                 5
## 9170            Manhattan Entire home/apt             30                 6
## 9171            Manhattan    Private room              1                18
## 9172            Manhattan    Private room             10                 8
## 9173            Manhattan Entire home/apt              4                 3
## 9174            Manhattan Entire home/apt              3               200
## 9175            Manhattan Entire home/apt              1               126
## 9176             Brooklyn    Private room              1                19
## 9177             Brooklyn    Private room              3                 4
## 9178            Manhattan Entire home/apt              2                 3
## 9179             Brooklyn Entire home/apt              4                 3
## 9180               Queens Entire home/apt              7                 2
## 9181            Manhattan Entire home/apt              2                13
## 9182             Brooklyn Entire home/apt              2               129
## 9183               Queens    Private room              1               543
## 9184               Queens    Private room              2                24
## 9185            Manhattan Entire home/apt              1                 1
## 9186            Manhattan Entire home/apt              2                 1
## 9187               Queens    Private room              1                 1
## 9188             Brooklyn Entire home/apt              1                 1
## 9189            Manhattan Entire home/apt              4               111
## 9190            Manhattan    Private room              2                 3
## 9191             Brooklyn Entire home/apt              5               147
## 9192             Brooklyn    Private room              7                13
## 9193             Brooklyn    Private room              2                 7
## 9194            Manhattan Entire home/apt              2               113
## 9195            Manhattan     Shared room              1                 1
## 9196             Brooklyn Entire home/apt              2                 7
## 9197             Brooklyn Entire home/apt              1                 5
## 9198            Manhattan Entire home/apt              2                48
## 9199            Manhattan    Private room              1                 2
## 9200            Manhattan Entire home/apt             30                 2
## 9201             Brooklyn    Private room              2                 2
## 9202            Manhattan Entire home/apt              2                14
## 9203             Brooklyn Entire home/apt              3                 2
## 9204             Brooklyn Entire home/apt              3                27
## 9205             Brooklyn Entire home/apt              7                11
## 9206               Queens    Private room              7                 1
## 9207            Manhattan Entire home/apt              7                 3
## 9208             Brooklyn    Private room              2               106
## 9209            Manhattan    Private room              2                11
## 9210            Manhattan Entire home/apt              2                13
## 9211            Manhattan Entire home/apt              5                11
## 9212             Brooklyn    Private room             14                 9
## 9213             Brooklyn Entire home/apt              2                 2
## 9214            Manhattan    Private room              6                 1
## 9215             Brooklyn Entire home/apt             13                 1
## 9216            Manhattan Entire home/apt              2                 1
## 9217            Manhattan    Private room              2                21
## 9218             Brooklyn Entire home/apt              5                 9
## 9219            Manhattan Entire home/apt              4                 3
## 9220             Brooklyn    Private room              5                 1
## 9221            Manhattan Entire home/apt              3                24
## 9222             Brooklyn Entire home/apt              2               147
## 9223            Manhattan Entire home/apt              1               146
## 9224             Brooklyn    Private room              1               186
## 9225            Manhattan    Private room              3               100
## 9226             Brooklyn Entire home/apt              2               203
## 9227             Brooklyn    Private room              2                 1
## 9228               Queens    Private room              2                 1
## 9229             Brooklyn     Shared room              2                 7
## 9230            Manhattan    Private room              2                34
## 9231             Brooklyn    Private room              2               255
## 9232             Brooklyn    Private room              1                20
## 9233            Manhattan    Private room              3               157
## 9234            Manhattan Entire home/apt             30                 4
## 9235            Manhattan Entire home/apt              2               146
## 9236             Brooklyn Entire home/apt              3                21
## 9237             Brooklyn    Private room              1                31
## 9238             Brooklyn    Private room              2                78
## 9239             Brooklyn    Private room              4                 9
## 9240            Manhattan Entire home/apt             31                 2
## 9241             Brooklyn    Private room              5                 4
## 9242            Manhattan    Private room              3                 8
## 9243               Queens Entire home/apt              1                 2
## 9244            Manhattan Entire home/apt              4                 5
## 9245             Brooklyn    Private room              7                 1
## 9246             Brooklyn    Private room              1                 1
## 9247            Manhattan Entire home/apt             13                 1
## 9248            Manhattan Entire home/apt              3                72
## 9249            Manhattan    Private room              2                21
## 9250            Manhattan    Private room              2                 9
## 9251               Queens    Private room              1                85
## 9252                Bronx Entire home/apt              2                44
## 9253             Brooklyn Entire home/apt              1               201
## 9254             Brooklyn    Private room              3                13
## 9255               Queens    Private room              3                 1
## 9256             Brooklyn    Private room              1                45
## 9257             Brooklyn    Private room              2                 7
## 9258            Manhattan Entire home/apt              3               117
## 9259            Manhattan    Private room              5                92
## 9260             Brooklyn    Private room              1                70
## 9261             Brooklyn    Private room              2                71
## 9262        Staten Island Entire home/apt              2                 4
## 9263            Manhattan    Private room              1               161
## 9264             Brooklyn Entire home/apt              2                 1
## 9265            Manhattan Entire home/apt              2                31
## 9266             Brooklyn    Private room              1                 4
## 9267             Brooklyn Entire home/apt              1                 1
## 9268             Brooklyn Entire home/apt              4                61
## 9269             Brooklyn Entire home/apt              5                85
## 9270             Brooklyn Entire home/apt             30                26
## 9271            Manhattan Entire home/apt              1                72
## 9272            Manhattan Entire home/apt              7                 2
## 9273            Manhattan Entire home/apt             14                 3
## 9274                Bronx    Private room              1                 3
## 9275            Manhattan    Private room              2                10
## 9276             Brooklyn    Private room              4                84
## 9277             Brooklyn    Private room              2                 2
## 9278             Brooklyn    Private room              4                65
## 9279               Queens Entire home/apt              4                 6
## 9280            Manhattan    Private room              2                57
## 9281            Manhattan    Private room              3               107
## 9282             Brooklyn    Private room              1                62
## 9283             Brooklyn    Private room              1                73
## 9284            Manhattan    Private room              2                13
## 9285             Brooklyn Entire home/apt             20                30
## 9286               Queens    Private room             15                15
## 9287             Brooklyn Entire home/apt              3                38
## 9288             Brooklyn    Private room              2                72
## 9289             Brooklyn Entire home/apt              9                 7
## 9290             Brooklyn    Private room             60                 6
## 9291            Manhattan    Private room              3                18
## 9292            Manhattan    Private room              1                87
## 9293            Manhattan Entire home/apt              3                 8
## 9294               Queens Entire home/apt              3                25
## 9295            Manhattan    Private room              2                 3
## 9296                Bronx    Private room              5                17
## 9297             Brooklyn    Private room              2                 6
## 9298            Manhattan Entire home/apt              3                 3
## 9299        Staten Island    Private room              1                82
## 9300             Brooklyn    Private room              4                 3
## 9301            Manhattan Entire home/apt              2                39
## 9302             Brooklyn Entire home/apt              2                16
## 9303             Brooklyn    Private room              1                 4
## 9304            Manhattan Entire home/apt              1                 1
## 9305            Manhattan    Private room              2                11
## 9306            Manhattan    Private room              5                 1
## 9307            Manhattan Entire home/apt              3                11
## 9308            Manhattan    Private room              1                 5
## 9309            Manhattan    Private room              3                 4
## 9310             Brooklyn Entire home/apt              4                26
## 9311             Brooklyn    Private room              5                 5
## 9312             Brooklyn    Private room              7                16
## 9313            Manhattan Entire home/apt              8                23
## 9314             Brooklyn     Shared room              1               126
## 9315             Brooklyn Entire home/apt              2                80
## 9316            Manhattan Entire home/apt              2                 1
## 9317                Bronx    Private room              4                40
## 9318             Brooklyn Entire home/apt              3                 6
## 9319            Manhattan    Private room              3                17
## 9320             Brooklyn Entire home/apt              2                59
## 9321             Brooklyn Entire home/apt              1                10
## 9322             Brooklyn Entire home/apt              2                10
## 9323            Manhattan Entire home/apt              5                29
## 9324             Brooklyn Entire home/apt              3                84
## 9325             Brooklyn    Private room              4                 5
## 9326            Manhattan Entire home/apt              2                16
## 9327             Brooklyn Entire home/apt              3               160
## 9328             Brooklyn     Shared room              1               135
## 9329             Brooklyn    Private room              2                 9
## 9330            Manhattan Entire home/apt              1                13
## 9331             Brooklyn     Shared room              1                 1
## 9332            Manhattan Entire home/apt              2                10
## 9333               Queens Entire home/apt              1               172
## 9334               Queens    Private room              1                 5
## 9335             Brooklyn Entire home/apt              3                70
## 9336            Manhattan Entire home/apt             30                 1
## 9337            Manhattan Entire home/apt             30                 3
## 9338            Manhattan Entire home/apt              4                 2
## 9339             Brooklyn    Private room              3                34
## 9340             Brooklyn    Private room              7                 2
## 9341             Brooklyn Entire home/apt              2               129
## 9342             Brooklyn Entire home/apt              2                 4
## 9343            Manhattan    Private room              4                 1
## 9344            Manhattan    Private room              3                37
## 9345            Manhattan    Private room              2                 3
## 9346             Brooklyn    Private room              1                73
## 9347             Brooklyn Entire home/apt              2               188
## 9348             Brooklyn    Private room              2                 3
## 9349            Manhattan    Private room              2                35
## 9350             Brooklyn     Shared room              1                 5
## 9351            Manhattan Entire home/apt              2                 1
## 9352             Brooklyn    Private room              7                 1
## 9353             Brooklyn Entire home/apt              5                 5
## 9354             Brooklyn Entire home/apt              2               114
## 9355            Manhattan Entire home/apt              4                 8
## 9356            Manhattan    Private room              5                 4
## 9357            Manhattan Entire home/apt              2                31
## 9358            Manhattan    Private room              2                84
## 9359            Manhattan Entire home/apt              5                 1
## 9360               Queens    Private room              2                 9
## 9361            Manhattan Entire home/apt              3                 9
## 9362        Staten Island Entire home/apt              2               147
## 9363            Manhattan Entire home/apt              2                 6
## 9364             Brooklyn    Private room              1                 2
## 9365             Brooklyn Entire home/apt              4                 5
## 9366            Manhattan Entire home/apt              5                 2
## 9367             Brooklyn    Private room              4                 3
## 9368            Manhattan    Private room              5                 2
## 9369            Manhattan Entire home/apt              2                11
## 9370            Manhattan Entire home/apt              6                 4
## 9371             Brooklyn Entire home/apt              5                 9
## 9372            Manhattan    Private room              1                38
## 9373             Brooklyn Entire home/apt             10                27
## 9374                Bronx    Private room              1               202
## 9375               Queens Entire home/apt              2                 1
## 9376             Brooklyn Entire home/apt              4                 4
## 9377            Manhattan    Private room              2               165
## 9378            Manhattan Entire home/apt              1                71
## 9379            Manhattan Entire home/apt              1                 1
## 9380             Brooklyn Entire home/apt              3               141
## 9381             Brooklyn Entire home/apt             16                 5
## 9382             Brooklyn    Private room              4                13
## 9383            Manhattan Entire home/apt              2                25
## 9384             Brooklyn    Private room              3               219
## 9385            Manhattan    Private room              3                 2
## 9386             Brooklyn    Private room              3                 3
## 9387            Manhattan Entire home/apt              5                11
## 9388            Manhattan    Private room              1                 5
## 9389            Manhattan Entire home/apt              3               102
## 9390             Brooklyn    Private room              2                36
## 9391            Manhattan    Private room              3                 6
## 9392             Brooklyn Entire home/apt              4                 8
## 9393                Bronx    Private room              4                51
## 9394            Manhattan    Private room              1                 5
## 9395             Brooklyn    Private room              1                 2
## 9396             Brooklyn    Private room              2                12
## 9397            Manhattan Entire home/apt              3                10
## 9398             Brooklyn    Private room              1               151
## 9399            Manhattan Entire home/apt              4                 7
## 9400             Brooklyn Entire home/apt              6                12
## 9401            Manhattan Entire home/apt              2                 1
## 9402            Manhattan Entire home/apt              2                 1
## 9403            Manhattan    Private room              5                 7
## 9404             Brooklyn    Private room              6                26
## 9405            Manhattan    Private room              2                 2
## 9406               Queens    Private room              1               209
## 9407             Brooklyn    Private room              7                11
## 9408             Brooklyn    Private room              3                 1
## 9409            Manhattan    Private room              2                 3
## 9410                Bronx    Private room              2                98
## 9411             Brooklyn Entire home/apt              3                10
## 9412             Brooklyn    Private room              1                 3
## 9413             Brooklyn Entire home/apt              2                 7
## 9414            Manhattan    Private room              2                71
## 9415               Queens Entire home/apt              5                 3
## 9416            Manhattan Entire home/apt              1                13
## 9417            Manhattan Entire home/apt              4                15
## 9418             Brooklyn    Private room              1                 2
## 9419            Manhattan    Private room              3                67
## 9420            Manhattan Entire home/apt              3                 4
## 9421             Brooklyn Entire home/apt              3               107
## 9422            Manhattan    Private room              2                 1
## 9423            Manhattan    Private room              2                 2
## 9424            Manhattan Entire home/apt              6                15
## 9425            Manhattan    Private room              1                 9
## 9426             Brooklyn Entire home/apt              1                 1
## 9427             Brooklyn    Private room              1                 9
## 9428               Queens Entire home/apt              2               166
## 9429            Manhattan    Private room              2                12
## 9430            Manhattan Entire home/apt              2               134
## 9431             Brooklyn    Private room              3                18
## 9432             Brooklyn Entire home/apt              7                45
## 9433               Queens    Private room              2                39
## 9434            Manhattan Entire home/apt              2                20
## 9435            Manhattan Entire home/apt              2                 6
## 9436             Brooklyn Entire home/apt              3                 1
## 9437             Brooklyn    Private room              2                12
## 9438             Brooklyn    Private room              1               169
## 9439            Manhattan Entire home/apt              3                 4
## 9440            Manhattan    Private room              1                 1
## 9441            Manhattan Entire home/apt              4                46
## 9442            Manhattan    Private room              4                 2
## 9443             Brooklyn    Private room              4                 3
## 9444             Brooklyn Entire home/apt              4                 5
## 9445            Manhattan    Private room              3                 1
## 9446            Manhattan    Private room              1               163
## 9447            Manhattan    Private room              5                 2
## 9448            Manhattan Entire home/apt             10                 3
## 9449             Brooklyn Entire home/apt              2                13
## 9450            Manhattan    Private room              2                23
## 9451            Manhattan    Private room              1               212
## 9452               Queens    Private room              1                 6
## 9453               Queens    Private room              1                 2
## 9454            Manhattan Entire home/apt              1                28
## 9455             Brooklyn Entire home/apt              2                20
## 9456            Manhattan Entire home/apt              2                 8
## 9457            Manhattan    Private room              1               152
## 9458            Manhattan    Private room              1                71
## 9459            Manhattan Entire home/apt              4                 4
## 9460            Manhattan    Private room              1                 2
## 9461            Manhattan Entire home/apt              2                20
## 9462            Manhattan Entire home/apt              1                31
## 9463             Brooklyn    Private room              2                 2
## 9464             Brooklyn Entire home/apt              2               171
## 9465             Brooklyn Entire home/apt              1                47
## 9466            Manhattan Entire home/apt              1                 7
## 9467            Manhattan    Private room              1                60
## 9468            Manhattan Entire home/apt             30                 8
## 9469             Brooklyn Entire home/apt              1                 1
## 9470               Queens Entire home/apt              2                 9
## 9471            Manhattan Entire home/apt              7                 8
## 9472            Manhattan    Private room              2                 2
## 9473            Manhattan Entire home/apt             30                 1
## 9474            Manhattan Entire home/apt              4                 1
## 9475             Brooklyn    Private room              1                 2
## 9476            Manhattan    Private room              1                 1
## 9477            Manhattan Entire home/apt              7                 6
## 9478            Manhattan     Shared room              1                 8
## 9479             Brooklyn    Private room              1               215
## 9480               Queens Entire home/apt              5                 2
## 9481             Brooklyn    Private room              1                 5
## 9482             Brooklyn    Private room              2                 1
## 9483             Brooklyn Entire home/apt              1                52
## 9484            Manhattan    Private room              4                 2
## 9485            Manhattan Entire home/apt              2                 9
## 9486             Brooklyn Entire home/apt              3                15
## 9487            Manhattan    Private room              3                79
## 9488            Manhattan Entire home/apt              5                25
## 9489            Manhattan Entire home/apt              1                 2
## 9490               Queens     Shared room              1                 1
## 9491            Manhattan Entire home/apt              2                 1
## 9492             Brooklyn    Private room              3                 2
## 9493             Brooklyn Entire home/apt              3                34
## 9494            Manhattan Entire home/apt              2                 5
## 9495            Manhattan Entire home/apt              7                 2
## 9496            Manhattan Entire home/apt              2                 2
## 9497             Brooklyn    Private room              1                14
## 9498            Manhattan Entire home/apt              2                 1
## 9499            Manhattan Entire home/apt              2                 4
## 9500            Manhattan Entire home/apt              1                 4
## 9501               Queens    Private room              4                86
## 9502            Manhattan Entire home/apt              6                 7
## 9503               Queens    Private room              1                12
## 9504             Brooklyn    Private room              5                 1
## 9505             Brooklyn    Private room              1                 1
## 9506             Brooklyn    Private room              3                 1
## 9507            Manhattan    Private room              1                 7
## 9508            Manhattan    Private room              3                98
## 9509             Brooklyn Entire home/apt              3                63
## 9510            Manhattan    Private room              3                86
## 9511               Queens    Private room              5                29
## 9512             Brooklyn Entire home/apt              1                 1
## 9513             Brooklyn     Shared room              8                41
## 9514             Brooklyn Entire home/apt              5                94
## 9515            Manhattan Entire home/apt              1                 2
## 9516               Queens    Private room              5                30
## 9517               Queens    Private room              1                 5
## 9518            Manhattan    Private room              3                31
## 9519            Manhattan    Private room              2                47
## 9520             Brooklyn Entire home/apt             10                 2
## 9521            Manhattan Entire home/apt              1                 3
## 9522            Manhattan Entire home/apt              5               107
## 9523                Bronx Entire home/apt              2                58
## 9524             Brooklyn Entire home/apt              2                 6
## 9525             Brooklyn Entire home/apt              2                 1
## 9526            Manhattan Entire home/apt              1               205
## 9527             Brooklyn    Private room              1                 2
## 9528            Manhattan Entire home/apt              1                 2
## 9529            Manhattan Entire home/apt              4                 2
## 9530            Manhattan Entire home/apt              3                12
## 9531             Brooklyn    Private room              2                57
## 9532             Brooklyn Entire home/apt              2               136
## 9533             Brooklyn Entire home/apt              1                 2
## 9534            Manhattan Entire home/apt              3                13
## 9535            Manhattan Entire home/apt              1                 1
## 9536            Manhattan     Shared room              1               104
## 9537             Brooklyn Entire home/apt              3                26
## 9538               Queens    Private room              1                 7
## 9539             Brooklyn Entire home/apt             30                 2
## 9540             Brooklyn    Private room              2                42
## 9541             Brooklyn    Private room              1               201
## 9542             Brooklyn Entire home/apt              3               159
## 9543               Queens    Private room              1                68
## 9544             Brooklyn     Shared room             30                 3
## 9545            Manhattan    Private room              2                50
## 9546               Queens    Private room              2                15
## 9547            Manhattan    Private room              4                 5
## 9548            Manhattan Entire home/apt              1                88
## 9549            Manhattan Entire home/apt              3               130
## 9550            Manhattan Entire home/apt              2                 2
## 9551             Brooklyn Entire home/apt              2                23
## 9552             Brooklyn Entire home/apt              5                67
## 9553               Queens    Private room              1                 5
## 9554             Brooklyn    Private room             30                 9
## 9555             Brooklyn    Private room              3                26
## 9556            Manhattan    Private room              2                58
## 9557            Manhattan Entire home/apt              2                95
## 9558             Brooklyn Entire home/apt              5                 3
## 9559            Manhattan Entire home/apt              6                 2
## 9560             Brooklyn    Private room              4                17
## 9561            Manhattan Entire home/apt              1                 2
## 9562            Manhattan Entire home/apt              1                 1
## 9563            Manhattan    Private room              4               122
## 9564            Manhattan Entire home/apt              2                19
## 9565             Brooklyn    Private room              1               241
## 9566             Brooklyn    Private room              2                58
## 9567            Manhattan     Shared room              1                 8
## 9568            Manhattan Entire home/apt              3                 2
## 9569             Brooklyn Entire home/apt              5                 2
## 9570            Manhattan    Private room              1                36
## 9571            Manhattan    Private room              5                74
## 9572             Brooklyn Entire home/apt              6                 3
## 9573             Brooklyn Entire home/apt              4                59
## 9574            Manhattan Entire home/apt              3                10
## 9575             Brooklyn Entire home/apt              3                 1
## 9576            Manhattan    Private room              3                27
## 9577             Brooklyn Entire home/apt              2                 7
## 9578             Brooklyn    Private room              3                 6
## 9579             Brooklyn    Private room              2                79
## 9580             Brooklyn    Private room              5                22
## 9581            Manhattan Entire home/apt              5                16
## 9582        Staten Island Entire home/apt              1               105
## 9583             Brooklyn    Private room              2                18
## 9584            Manhattan    Private room              1                27
## 9585            Manhattan    Private room              4               162
## 9586             Brooklyn Entire home/apt              4                56
## 9587             Brooklyn Entire home/apt              3                 7
## 9588               Queens    Private room              2                62
## 9589            Manhattan Entire home/apt              2               134
## 9590             Brooklyn Entire home/apt             30                 6
## 9591            Manhattan Entire home/apt              4                 2
## 9592             Brooklyn    Private room              3                16
## 9593               Queens    Private room              1                 3
## 9594             Brooklyn    Private room              1                 1
## 9595             Brooklyn    Private room              4                 2
## 9596             Brooklyn Entire home/apt              1                68
## 9597             Brooklyn Entire home/apt              3                 1
## 9598            Manhattan Entire home/apt              2                89
## 9599             Brooklyn Entire home/apt             30               143
## 9600            Manhattan Entire home/apt             14                 3
## 9601            Manhattan    Private room              5                78
## 9602               Queens    Private room              3                 1
## 9603            Manhattan Entire home/apt              2               163
## 9604             Brooklyn Entire home/apt              2                58
## 9605            Manhattan    Private room              3                 6
## 9606               Queens     Shared room              1                34
## 9607            Manhattan Entire home/apt              1               272
## 9608             Brooklyn Entire home/apt              4                12
## 9609            Manhattan    Private room              1                 1
## 9610             Brooklyn Entire home/apt              3                12
## 9611            Manhattan    Private room              7                90
## 9612            Manhattan Entire home/apt              1                 2
## 9613            Manhattan Entire home/apt              4                84
## 9614               Queens    Private room              2               240
## 9615            Manhattan Entire home/apt              7                 1
## 9616               Queens Entire home/apt              2                57
## 9617             Brooklyn Entire home/apt              1                 2
## 9618             Brooklyn    Private room              2                 3
## 9619             Brooklyn Entire home/apt              5                79
## 9620               Queens    Private room             29                 1
## 9621             Brooklyn    Private room              2                43
## 9622            Manhattan Entire home/apt             15                 4
## 9623             Brooklyn    Private room              3                19
## 9624            Manhattan Entire home/apt              3                 7
## 9625            Manhattan    Private room              2                78
## 9626             Brooklyn    Private room              5                 2
## 9627             Brooklyn    Private room              2                23
## 9628             Brooklyn    Private room              1                 1
## 9629            Manhattan Entire home/apt             31                31
## 9630            Manhattan Entire home/apt              1                 2
## 9631               Queens Entire home/apt              1               113
## 9632             Brooklyn    Private room              9                 1
## 9633            Manhattan    Private room              3                 1
## 9634            Manhattan Entire home/apt              2                 8
## 9635             Brooklyn    Private room              1                87
## 9636            Manhattan    Private room             14                 1
## 9637               Queens    Private room              1               254
## 9638             Brooklyn Entire home/apt              6               108
## 9639             Brooklyn Entire home/apt              7                 2
## 9640               Queens    Private room              3                 2
## 9641             Brooklyn Entire home/apt              5                 9
## 9642               Queens    Private room              4                 6
## 9643            Manhattan Entire home/apt              2                 3
## 9644             Brooklyn    Private room              2                20
## 9645            Manhattan    Private room              1                16
## 9646             Brooklyn    Private room              1                22
## 9647            Manhattan    Private room              3               122
## 9648             Brooklyn    Private room              1               202
## 9649             Brooklyn Entire home/apt              1                 3
## 9650            Manhattan    Private room             14                25
## 9651             Brooklyn    Private room              1               194
## 9652               Queens    Private room             20                 1
## 9653            Manhattan Entire home/apt              1                 2
## 9654             Brooklyn    Private room              2                 4
## 9655             Brooklyn Entire home/apt              2               101
## 9656             Brooklyn    Private room              2                 1
## 9657             Brooklyn Entire home/apt              2                53
## 9658            Manhattan    Private room              5                91
## 9659               Queens    Private room              3                 1
## 9660        Staten Island Entire home/apt              2               131
## 9661               Queens Entire home/apt              3                 1
## 9662            Manhattan    Private room              2               150
## 9663             Brooklyn     Shared room              1               116
## 9664            Manhattan Entire home/apt              1                 9
## 9665             Brooklyn Entire home/apt              3               116
## 9666             Brooklyn Entire home/apt              3                 4
## 9667            Manhattan Entire home/apt             30                18
## 9668             Brooklyn Entire home/apt              5                 4
## 9669             Brooklyn Entire home/apt              4                13
## 9670        Staten Island Entire home/apt              1                26
## 9671            Manhattan Entire home/apt              3                 8
## 9672            Manhattan Entire home/apt              1                 1
## 9673            Manhattan Entire home/apt              5                 3
## 9674            Manhattan     Shared room              1                 1
## 9675               Queens    Private room              2                 4
## 9676            Manhattan Entire home/apt             30                 7
## 9677            Manhattan Entire home/apt              3                 6
## 9678            Manhattan Entire home/apt              3                 8
## 9679               Queens    Private room              1                27
## 9680               Queens    Private room              2                54
## 9681            Manhattan    Private room              3                17
## 9682             Brooklyn    Private room              2               125
## 9683             Brooklyn    Private room              1                 1
## 9684            Manhattan Entire home/apt              1                 6
## 9685               Queens Entire home/apt              1                14
## 9686               Queens    Private room             14                 2
## 9687             Brooklyn    Private room              2                10
## 9688             Brooklyn Entire home/apt              4                68
## 9689            Manhattan Entire home/apt              2               148
## 9690            Manhattan    Private room             30               146
## 9691            Manhattan    Private room              1                 1
## 9692            Manhattan    Private room              1               129
## 9693            Manhattan    Private room              5                31
## 9694             Brooklyn    Private room              1                 1
## 9695            Manhattan Entire home/apt              1                 9
## 9696             Brooklyn Entire home/apt              5               135
## 9697               Queens    Private room              2                49
## 9698               Queens Entire home/apt              3                11
## 9699             Brooklyn    Private room              1               190
## 9700            Manhattan Entire home/apt              4                 2
## 9701            Manhattan    Private room              1                 2
## 9702             Brooklyn    Private room              2                86
## 9703             Brooklyn Entire home/apt             30                 7
## 9704            Manhattan Entire home/apt              2                 2
## 9705            Manhattan Entire home/apt              2                26
## 9706            Manhattan    Private room              3                13
## 9707            Manhattan Entire home/apt              1                 4
## 9708            Manhattan Entire home/apt              3                17
## 9709            Manhattan Entire home/apt              2                34
## 9710             Brooklyn Entire home/apt              3                 2
## 9711            Manhattan    Private room              4                59
## 9712            Manhattan Entire home/apt              3                55
## 9713            Manhattan Entire home/apt              7                15
## 9714             Brooklyn Entire home/apt              5                 1
## 9715            Manhattan Entire home/apt              1               289
## 9716             Brooklyn    Private room              2                 1
## 9717            Manhattan    Private room              2                38
## 9718            Manhattan Entire home/apt              1                 1
## 9719             Brooklyn Entire home/apt              5                35
## 9720            Manhattan    Private room              1                 2
## 9721               Queens Entire home/apt              1                14
## 9722            Manhattan    Private room              2                11
## 9723             Brooklyn    Private room              5                32
## 9724            Manhattan Entire home/apt             28               125
## 9725             Brooklyn Entire home/apt              5                10
## 9726             Brooklyn Entire home/apt              1                 1
## 9727            Manhattan    Private room              1                30
## 9728             Brooklyn    Private room              1                 5
## 9729            Manhattan Entire home/apt             30                 3
## 9730            Manhattan Entire home/apt              2                 1
## 9731            Manhattan Entire home/apt              2                18
## 9732            Manhattan Entire home/apt             30                 1
## 9733            Manhattan Entire home/apt              3                51
## 9734               Queens Entire home/apt              6                57
## 9735            Manhattan Entire home/apt              2                24
## 9736            Manhattan Entire home/apt              1                 1
## 9737            Manhattan Entire home/apt              2                 1
## 9738            Manhattan Entire home/apt              2               170
## 9739            Manhattan Entire home/apt              2                 1
## 9740            Manhattan Entire home/apt             30                 2
## 9741            Manhattan    Private room              1                58
## 9742            Manhattan    Private room              3               142
## 9743             Brooklyn    Private room              2                30
## 9744            Manhattan Entire home/apt              2                 4
## 9745            Manhattan Entire home/apt             30                 5
## 9746             Brooklyn    Private room              1                 9
## 9747               Queens Entire home/apt              3                91
## 9748            Manhattan    Private room              1                 4
## 9749            Manhattan Entire home/apt             90                 5
## 9750               Queens     Shared room              1                39
## 9751             Brooklyn    Private room              5                12
## 9752            Manhattan    Private room              1                 1
## 9753             Brooklyn Entire home/apt              2               198
## 9754            Manhattan    Private room              1                52
## 9755            Manhattan Entire home/apt              1                 1
## 9756             Brooklyn    Private room              3                17
## 9757                Bronx    Private room              2               103
## 9758             Brooklyn    Private room              5                 1
## 9759             Brooklyn    Private room              1                 1
## 9760            Manhattan    Private room              2                10
## 9761             Brooklyn Entire home/apt              7                16
## 9762             Brooklyn Entire home/apt              1                50
## 9763             Brooklyn    Private room              3                 1
## 9764            Manhattan Entire home/apt              1                49
## 9765            Manhattan Entire home/apt              5                15
## 9766             Brooklyn Entire home/apt              2               166
## 9767             Brooklyn    Private room              4                34
## 9768               Queens Entire home/apt              3                 7
## 9769             Brooklyn Entire home/apt              3               115
## 9770             Brooklyn    Private room              1                 6
## 9771            Manhattan    Private room             15                 2
## 9772            Manhattan    Private room              1               225
## 9773            Manhattan    Private room             10                32
## 9774            Manhattan Entire home/apt              7                 5
## 9775            Manhattan    Private room              1               207
## 9776            Manhattan Entire home/apt              2                 3
## 9777             Brooklyn Entire home/apt              1                 8
## 9778             Brooklyn    Private room              7                16
## 9779             Brooklyn    Private room              9                23
## 9780             Brooklyn    Private room              1                 4
## 9781            Manhattan Entire home/apt              6                51
## 9782            Manhattan Entire home/apt              2                33
## 9783             Brooklyn    Private room              1                 1
## 9784             Brooklyn Entire home/apt              1                 1
## 9785            Manhattan Entire home/apt             30                 3
## 9786             Brooklyn Entire home/apt             45                 3
## 9787            Manhattan Entire home/apt              1                 1
## 9788            Manhattan Entire home/apt              2                 2
## 9789            Manhattan    Private room              1                 6
## 9790            Manhattan Entire home/apt              5                11
## 9791            Manhattan Entire home/apt              2               241
## 9792            Manhattan    Private room              5                10
## 9793            Manhattan Entire home/apt              1                49
## 9794            Manhattan Entire home/apt              2                 1
## 9795             Brooklyn Entire home/apt              1               264
## 9796            Manhattan Entire home/apt             12                27
## 9797             Brooklyn Entire home/apt             28                29
## 9798               Queens    Private room             60                 3
## 9799            Manhattan Entire home/apt              4               196
## 9800             Brooklyn    Private room              2                91
## 9801            Manhattan Entire home/apt              2                62
## 9802             Brooklyn Entire home/apt              3                 1
## 9803            Manhattan Entire home/apt              2                 5
## 9804             Brooklyn    Private room              2                81
## 9805             Brooklyn Entire home/apt              2                 1
## 9806            Manhattan Entire home/apt              3                 3
## 9807             Brooklyn    Private room              1                 9
## 9808            Manhattan Entire home/apt              3                 2
## 9809            Manhattan Entire home/apt             10                31
## 9810             Brooklyn Entire home/apt              7                 2
## 9811             Brooklyn Entire home/apt              3                 1
## 9812            Manhattan Entire home/apt              1                 2
## 9813             Brooklyn Entire home/apt              1                 2
## 9814            Manhattan Entire home/apt              3                26
## 9815             Brooklyn    Private room              3                 4
## 9816             Brooklyn Entire home/apt              5                28
## 9817             Brooklyn Entire home/apt              3               151
## 9818               Queens    Private room              2                94
## 9819             Brooklyn    Private room              1                 4
## 9820            Manhattan Entire home/apt              2                 1
## 9821            Manhattan Entire home/apt              3                58
## 9822             Brooklyn    Private room              5                76
## 9823            Manhattan    Private room              2                32
## 9824            Manhattan    Private room              1                76
## 9825            Manhattan Entire home/apt              4                 8
## 9826            Manhattan Entire home/apt              1                 4
## 9827               Queens    Private room              1                25
## 9828             Brooklyn    Private room              3                 9
## 9829             Brooklyn    Private room              2               197
## 9830             Brooklyn Entire home/apt              5                 1
## 9831               Queens    Private room             60                 1
## 9832             Brooklyn Entire home/apt              1                54
## 9833             Brooklyn    Private room              3                11
## 9834            Manhattan Entire home/apt              2                 2
## 9835               Queens    Private room              2                85
## 9836             Brooklyn    Private room              2                10
## 9837             Brooklyn Entire home/apt              5                 7
## 9838            Manhattan Entire home/apt              2                76
## 9839            Manhattan Entire home/apt              4                28
## 9840             Brooklyn    Private room              2                 2
## 9841            Manhattan Entire home/apt              1                 3
## 9842            Manhattan Entire home/apt              2                 1
## 9843             Brooklyn    Private room              2                 2
## 9844            Manhattan Entire home/apt              1                83
## 9845            Manhattan Entire home/apt             30                10
## 9846            Manhattan Entire home/apt              1                 1
## 9847             Brooklyn Entire home/apt              3                93
## 9848            Manhattan Entire home/apt              2               115
## 9849             Brooklyn Entire home/apt              2                12
## 9850               Queens    Private room              3                 6
## 9851            Manhattan    Private room              1                 2
## 9852             Brooklyn Entire home/apt              3                 2
## 9853             Brooklyn    Private room             10                12
## 9854               Queens    Private room              1                71
## 9855             Brooklyn    Private room              1                16
## 9856            Manhattan    Private room              1               118
## 9857             Brooklyn    Private room              2                28
## 9858            Manhattan    Private room              1                 6
## 9859            Manhattan    Private room              1                 1
## 9860             Brooklyn    Private room              3                 9
## 9861             Brooklyn    Private room              1               254
## 9862            Manhattan    Private room              1                66
## 9863             Brooklyn Entire home/apt              4                18
## 9864             Brooklyn    Private room              2                 1
## 9865            Manhattan    Private room              2                 7
## 9866               Queens Entire home/apt              3                74
## 9867             Brooklyn Entire home/apt              3               115
## 9868            Manhattan    Private room              6                17
## 9869               Queens    Private room              1                 1
## 9870             Brooklyn    Private room             15                 3
## 9871            Manhattan    Private room              1                38
## 9872            Manhattan Entire home/apt              1                 7
## 9873            Manhattan Entire home/apt              1               168
## 9874            Manhattan Entire home/apt              2                11
## 9875            Manhattan    Private room              1                 9
## 9876             Brooklyn    Private room              5               165
## 9877            Manhattan Entire home/apt              1                 1
## 9878            Manhattan Entire home/apt              1                 2
## 9879            Manhattan Entire home/apt              1                 2
## 9880             Brooklyn    Private room              1               270
## 9881            Manhattan Entire home/apt              6                 2
## 9882                Bronx    Private room              3                 8
## 9883            Manhattan Entire home/apt              2                 5
## 9884                Bronx    Private room              1                50
## 9885               Queens Entire home/apt              1                 2
## 9886            Manhattan    Private room              2                 1
## 9887             Brooklyn    Private room              3                59
## 9888            Manhattan Entire home/apt              2                32
## 9889             Brooklyn Entire home/apt              2               222
## 9890            Manhattan    Private room             30                22
## 9891             Brooklyn    Private room              2                20
## 9892             Brooklyn     Shared room              1                 1
## 9893            Manhattan Entire home/apt              3                38
## 9894            Manhattan Entire home/apt              2               103
## 9895             Brooklyn Entire home/apt              7                40
## 9896            Manhattan Entire home/apt              3                 6
## 9897            Manhattan    Private room              3                 6
## 9898            Manhattan Entire home/apt              5                 1
## 9899             Brooklyn Entire home/apt              1                 2
## 9900               Queens Entire home/apt              3                40
## 9901             Brooklyn    Private room              4                57
## 9902             Brooklyn    Private room              4                64
## 9903             Brooklyn Entire home/apt             40                59
## 9904            Manhattan    Private room              1                16
## 9905             Brooklyn    Private room              1                 1
## 9906            Manhattan Entire home/apt              5                 4
## 9907             Brooklyn Entire home/apt              4                85
## 9908             Brooklyn Entire home/apt              3                 8
## 9909            Manhattan Entire home/apt              1                 1
## 9910               Queens    Private room              3               138
## 9911             Brooklyn    Private room              1                 4
## 9912             Brooklyn    Private room              5                 1
## 9913             Brooklyn    Private room              1                18
## 9914             Brooklyn Entire home/apt             14                93
## 9915            Manhattan    Private room              1               228
## 9916            Manhattan Entire home/apt              1                 6
## 9917             Brooklyn    Private room              3                 1
## 9918             Brooklyn Entire home/apt              5                 1
## 9919            Manhattan Entire home/apt             30                60
## 9920             Brooklyn Entire home/apt              1                22
## 9921             Brooklyn    Private room              1                15
## 9922            Manhattan Entire home/apt              7                 2
## 9923             Brooklyn Entire home/apt             45                 1
## 9924               Queens    Private room              1               137
## 9925               Queens    Private room              1               143
## 9926               Queens    Private room              1                78
## 9927               Queens    Private room              1               150
## 9928               Queens    Private room              1                99
## 9929             Brooklyn    Private room              2                 1
## 9930             Brooklyn    Private room             28                13
## 9931             Brooklyn Entire home/apt              2                74
## 9932             Brooklyn    Private room              2                57
## 9933            Manhattan    Private room              2                92
## 9934            Manhattan Entire home/apt              7                 2
## 9935             Brooklyn    Private room              7                 8
## 9936            Manhattan     Shared room              5                 5
## 9937             Brooklyn Entire home/apt              2                10
## 9938               Queens    Private room              2                 5
## 9939             Brooklyn Entire home/apt              3                 1
## 9940             Brooklyn Entire home/apt              2                30
## 9941             Brooklyn    Private room             30                 7
## 9942            Manhattan Entire home/apt              5                 4
## 9943             Brooklyn    Private room              3                 1
## 9944             Brooklyn Entire home/apt              2               121
## 9945            Manhattan    Private room              1                13
## 9946            Manhattan    Private room              2                 1
## 9947             Brooklyn Entire home/apt              3                88
## 9948            Manhattan Entire home/apt              3                 1
## 9949            Manhattan    Private room             14                19
## 9950             Brooklyn Entire home/apt              2               137
## 9951             Brooklyn Entire home/apt              2               174
## 9952             Brooklyn    Private room              6                24
## 9953            Manhattan Entire home/apt             20                16
## 9954             Brooklyn    Private room              1                 3
## 9955             Brooklyn Entire home/apt              3                51
## 9956             Brooklyn    Private room              2                 6
## 9957             Brooklyn Entire home/apt              3                28
## 9958                Bronx    Private room              2                 6
## 9959            Manhattan Entire home/apt              3               186
## 9960             Brooklyn Entire home/apt              2                19
## 9961             Brooklyn Entire home/apt              3                 6
## 9962             Brooklyn    Private room              1                 2
## 9963            Manhattan Entire home/apt              6                52
## 9964             Brooklyn     Shared room             30                 8
## 9965               Queens    Private room              1               123
## 9966             Brooklyn    Private room              1               122
## 9967             Brooklyn    Private room              5                12
## 9968             Brooklyn    Private room              2                 9
## 9969            Manhattan Entire home/apt              3                 2
## 9970            Manhattan Entire home/apt              1                 1
## 9971             Brooklyn    Private room              3                15
## 9972               Queens    Private room              1                33
## 9973             Brooklyn    Private room              3                 3
## 9974            Manhattan Entire home/apt             30                 1
## 9975             Brooklyn Entire home/apt              4               131
## 9976            Manhattan Entire home/apt              1                48
## 9977            Manhattan    Private room             14                 1
## 9978             Brooklyn     Shared room             30                 5
## 9979             Brooklyn    Private room              5                32
## 9980            Manhattan Entire home/apt             30                 8
## 9981             Brooklyn Entire home/apt              1                 1
## 9982             Brooklyn Entire home/apt              2                77
## 9983             Brooklyn Entire home/apt              2                28
## 9984            Manhattan    Private room              1                 5
## 9985            Manhattan    Private room              1                27
## 9986            Manhattan Entire home/apt              1               190
## 9987            Manhattan    Private room              1                 1
## 9988             Brooklyn    Private room              3                 5
## 9989             Brooklyn Entire home/apt              3                 4
## 9990            Manhattan Entire home/apt              3                11
## 9991             Brooklyn Entire home/apt              4                 5
## 9992             Brooklyn Entire home/apt             30                 6
## 9993             Brooklyn    Private room              3                67
## 9994            Manhattan Entire home/apt              5                10
## 9995            Manhattan Entire home/apt             30                 2
## 9996             Brooklyn    Private room              1               116
## 9997            Manhattan Entire home/apt              3               175
## 9998            Manhattan Entire home/apt             29                71
## 9999            Manhattan Entire home/apt              3                69
## 10000            Brooklyn Entire home/apt              2                11
## 10001            Brooklyn    Private room             27                 6
## 10002            Brooklyn Entire home/apt              3                 3
## 10003           Manhattan Entire home/apt              7                 4
## 10004           Manhattan    Private room              4                 1
## 10005           Manhattan Entire home/apt              1                 4
## 10006            Brooklyn    Private room              7                 1
## 10007           Manhattan Entire home/apt              2                10
## 10008           Manhattan Entire home/apt             30                 2
## 10009           Manhattan Entire home/apt              2                29
## 10010       Staten Island Entire home/apt              1                 1
## 10011           Manhattan Entire home/apt              7                44
## 10012           Manhattan Entire home/apt              4                 1
## 10013            Brooklyn Entire home/apt              3               129
## 10014           Manhattan Entire home/apt              1                 2
## 10015           Manhattan Entire home/apt              7                 3
## 10016              Queens    Private room              4                46
## 10017           Manhattan    Private room              3                 1
## 10018           Manhattan     Shared room              1                17
## 10019            Brooklyn    Private room              2                 1
## 10020            Brooklyn Entire home/apt              2               125
## 10021            Brooklyn    Private room              1                 2
## 10022            Brooklyn Entire home/apt              2                22
## 10023           Manhattan    Private room              3                 2
## 10024            Brooklyn Entire home/apt              3                60
## 10025            Brooklyn    Private room              5                14
## 10026            Brooklyn    Private room              3                 1
## 10027           Manhattan Entire home/apt              1                 1
## 10028           Manhattan Entire home/apt              2                18
## 10029            Brooklyn Entire home/apt              2                13
## 10030            Brooklyn Entire home/apt              2                21
## 10031           Manhattan    Private room              3                 3
## 10032            Brooklyn Entire home/apt              2                 1
## 10033            Brooklyn Entire home/apt              1                 1
## 10034              Queens    Private room              3                34
## 10035           Manhattan Entire home/apt              5                 6
## 10036           Manhattan Entire home/apt              1                 2
## 10037           Manhattan    Private room              1                91
## 10038            Brooklyn Entire home/apt              3                12
## 10039            Brooklyn    Private room             30                 8
## 10040            Brooklyn     Shared room             30                 7
## 10041            Brooklyn Entire home/apt              2               123
## 10042           Manhattan    Private room              2                53
## 10043            Brooklyn    Private room              2                38
## 10044           Manhattan Entire home/apt              2                 4
## 10045            Brooklyn    Private room              1                 2
## 10046            Brooklyn Entire home/apt              2                12
## 10047            Brooklyn Entire home/apt              1               232
## 10048            Brooklyn    Private room              4                40
## 10049           Manhattan Entire home/apt              1                 3
## 10050           Manhattan Entire home/apt              3                10
## 10051              Queens    Private room              2                 1
## 10052           Manhattan    Private room              1                25
## 10053           Manhattan Entire home/apt              1                 6
## 10054           Manhattan    Private room              2                 1
## 10055            Brooklyn Entire home/apt              7                 9
## 10056           Manhattan    Private room              2                67
## 10057           Manhattan Entire home/apt              2                 3
## 10058            Brooklyn Entire home/apt              5                 1
## 10059           Manhattan Entire home/apt            120                 7
## 10060           Manhattan Entire home/apt              5                 9
## 10061            Brooklyn Entire home/apt              2                74
## 10062           Manhattan    Private room              1                 3
## 10063           Manhattan    Private room              1                 1
## 10064            Brooklyn    Private room              6                 9
## 10065           Manhattan Entire home/apt              3                 1
## 10066           Manhattan Entire home/apt             30                 8
## 10067           Manhattan Entire home/apt              3                 5
## 10068           Manhattan    Private room              3                65
## 10069            Brooklyn    Private room              1                 2
## 10070            Brooklyn    Private room              4                 1
## 10071           Manhattan Entire home/apt              2                17
## 10072           Manhattan Entire home/apt              4                 2
## 10073           Manhattan Entire home/apt              1               123
## 10074              Queens    Private room              2                71
## 10075            Brooklyn    Private room              3                 6
## 10076           Manhattan Entire home/apt              1                85
## 10077           Manhattan Entire home/apt              2                 2
## 10078           Manhattan Entire home/apt              6                49
## 10079           Manhattan Entire home/apt              7                34
## 10080            Brooklyn Entire home/apt              5                98
## 10081           Manhattan Entire home/apt              4                 4
## 10082           Manhattan    Private room              1                 3
## 10083           Manhattan    Private room              3                17
## 10084           Manhattan Entire home/apt             28                17
## 10085            Brooklyn    Private room              2                67
## 10086            Brooklyn Entire home/apt              2                40
## 10087           Manhattan Entire home/apt              5                 3
## 10088            Brooklyn Entire home/apt              2                26
## 10089           Manhattan    Private room              1                 1
## 10090              Queens    Private room              2                 3
## 10091           Manhattan    Private room              2                66
## 10092           Manhattan    Private room              1                 4
## 10093            Brooklyn Entire home/apt             15                 3
## 10094           Manhattan Entire home/apt              1                 8
## 10095              Queens    Private room              3                 4
## 10096            Brooklyn    Private room              4                 2
## 10097            Brooklyn    Private room              3                 1
## 10098           Manhattan Entire home/apt              1               188
## 10099            Brooklyn    Private room              4                 2
## 10100            Brooklyn Entire home/apt              1                 6
## 10101           Manhattan    Private room              1                 2
## 10102           Manhattan    Private room              1               124
## 10103           Manhattan Entire home/apt              2                93
## 10104           Manhattan Entire home/apt              4                 5
## 10105           Manhattan Entire home/apt              6                10
## 10106           Manhattan Entire home/apt              2                 1
## 10107            Brooklyn Entire home/apt              2                 9
## 10108              Queens    Private room              2                 6
## 10109            Brooklyn    Private room              1               136
## 10110           Manhattan    Private room             14                 1
## 10111           Manhattan Entire home/apt              1                43
## 10112            Brooklyn    Private room              3                 2
## 10113              Queens    Private room              1               629
## 10114           Manhattan Entire home/apt             30                 1
## 10115            Brooklyn Entire home/apt              1               131
## 10116            Brooklyn    Private room              7                 1
## 10117               Bronx Entire home/apt              2               112
## 10118            Brooklyn    Private room              5                26
## 10119           Manhattan Entire home/apt              3                90
## 10120           Manhattan Entire home/apt              1                 1
## 10121           Manhattan Entire home/apt             30                10
## 10122            Brooklyn    Private room              2                78
## 10123            Brooklyn Entire home/apt              1                 1
## 10124            Brooklyn Entire home/apt              5                 1
## 10125            Brooklyn Entire home/apt              3               184
## 10126            Brooklyn Entire home/apt              1                 1
## 10127            Brooklyn Entire home/apt             10                 1
## 10128           Manhattan Entire home/apt              7                 1
## 10129            Brooklyn Entire home/apt              2                53
## 10130           Manhattan    Private room              6                10
## 10131           Manhattan Entire home/apt              2                 4
## 10132           Manhattan    Private room              1                 1
## 10133            Brooklyn Entire home/apt              3                82
## 10134           Manhattan Entire home/apt             20                 2
## 10135            Brooklyn    Private room              5                 8
## 10136           Manhattan    Private room              7                24
## 10137           Manhattan Entire home/apt              2               210
## 10138           Manhattan    Private room              3                 1
## 10139            Brooklyn    Private room              1                71
## 10140           Manhattan Entire home/apt              7               107
## 10141            Brooklyn    Private room              1                 1
## 10142           Manhattan Entire home/apt              2                 2
## 10143           Manhattan Entire home/apt              1                66
## 10144           Manhattan Entire home/apt              1                 6
## 10145           Manhattan Entire home/apt              3                 1
## 10146           Manhattan Entire home/apt              4                13
## 10147           Manhattan    Private room              1               200
## 10148           Manhattan    Private room              4                72
## 10149              Queens Entire home/apt              4                11
## 10150           Manhattan Entire home/apt              1                 1
## 10151           Manhattan    Private room              1                 3
## 10152           Manhattan    Private room              7                 2
## 10153            Brooklyn Entire home/apt              7                19
## 10154              Queens Entire home/apt              5                85
## 10155            Brooklyn    Private room              1                 2
## 10156            Brooklyn    Private room              2                 2
## 10157              Queens    Private room              1                 9
## 10158           Manhattan Entire home/apt             30                 4
## 10159           Manhattan    Private room              2                24
## 10160           Manhattan    Private room              5                 2
## 10161            Brooklyn Entire home/apt              1                 1
## 10162           Manhattan     Shared room              1                25
## 10163           Manhattan    Private room              5                 1
## 10164           Manhattan    Private room              1                 2
## 10165            Brooklyn Entire home/apt              3                 3
## 10166            Brooklyn    Private room              1                 1
## 10167           Manhattan Entire home/apt              2                 9
## 10168           Manhattan Entire home/apt              2                 2
## 10169            Brooklyn    Private room              1                46
## 10170            Brooklyn    Private room              1                 1
## 10171           Manhattan Entire home/apt              3                 1
## 10172            Brooklyn Entire home/apt              3                 3
## 10173              Queens Entire home/apt              5                 6
## 10174            Brooklyn    Private room              1                 2
## 10175            Brooklyn Entire home/apt              3                34
## 10176           Manhattan    Private room              1                 2
## 10177            Brooklyn Entire home/apt              1                 9
## 10178              Queens Entire home/apt              1                 1
## 10179           Manhattan Entire home/apt              3               124
## 10180           Manhattan Entire home/apt              1               162
## 10181            Brooklyn    Private room              2                38
## 10182           Manhattan Entire home/apt              2                 5
## 10183           Manhattan Entire home/apt              5                14
## 10184            Brooklyn    Private room              1                 8
## 10185            Brooklyn    Private room              1                 3
## 10186           Manhattan Entire home/apt             30                 5
## 10187            Brooklyn Entire home/apt              1                10
## 10188            Brooklyn Entire home/apt             30                 4
## 10189           Manhattan Entire home/apt              2                 8
## 10190           Manhattan Entire home/apt              3                 3
## 10191              Queens    Private room              4                 9
## 10192           Manhattan Entire home/apt              1                 9
## 10193              Queens     Shared room              3                 3
## 10194           Manhattan Entire home/apt              2                 2
## 10195           Manhattan Entire home/apt              1               137
## 10196           Manhattan Entire home/apt              1               206
## 10197            Brooklyn    Private room              2                42
## 10198            Brooklyn Entire home/apt              2                50
## 10199           Manhattan Entire home/apt              2               123
## 10200           Manhattan    Private room              1                10
## 10201              Queens    Private room              1                 1
## 10202           Manhattan Entire home/apt              2                 9
## 10203           Manhattan    Private room              1               193
## 10204            Brooklyn    Private room              1                 2
## 10205           Manhattan Entire home/apt              6                 1
## 10206           Manhattan    Private room              1                 1
## 10207            Brooklyn Entire home/apt             28                 4
## 10208            Brooklyn Entire home/apt              1                 7
## 10209            Brooklyn Entire home/apt              1                17
## 10210           Manhattan Entire home/apt              5                12
## 10211            Brooklyn Entire home/apt              3                93
## 10212            Brooklyn Entire home/apt              5                30
## 10213            Brooklyn    Private room              3                71
## 10214               Bronx    Private room              2               138
## 10215            Brooklyn Entire home/apt              4                 1
## 10216           Manhattan Entire home/apt              1               177
## 10217              Queens    Private room              2               132
## 10218           Manhattan    Private room              1                 9
## 10219            Brooklyn Entire home/apt              2               104
## 10220            Brooklyn    Private room              1                 1
## 10221            Brooklyn Entire home/apt              2               122
## 10222           Manhattan Entire home/apt              5                 2
## 10223              Queens    Private room              1                 2
## 10224           Manhattan Entire home/apt              3                12
## 10225           Manhattan Entire home/apt              2                 1
## 10226           Manhattan Entire home/apt              2                15
## 10227           Manhattan Entire home/apt              3               130
## 10228              Queens    Private room              6                76
## 10229           Manhattan Entire home/apt              1                 2
## 10230            Brooklyn Entire home/apt             14                 9
## 10231            Brooklyn    Private room              7                23
## 10232           Manhattan    Private room              2               123
## 10233           Manhattan Entire home/apt             13                 9
## 10234            Brooklyn Entire home/apt              2                 4
## 10235            Brooklyn    Private room              2                54
## 10236           Manhattan Entire home/apt              3                46
## 10237           Manhattan Entire home/apt              1                 3
## 10238           Manhattan Entire home/apt              3                18
## 10239           Manhattan Entire home/apt              1                 9
## 10240           Manhattan Entire home/apt              1                 1
## 10241            Brooklyn Entire home/apt             30                 7
## 10242            Brooklyn Entire home/apt              2                 3
## 10243           Manhattan    Private room              7                 6
## 10244            Brooklyn Entire home/apt             30                 3
## 10245            Brooklyn Entire home/apt              2                 2
## 10246           Manhattan    Private room              3                 6
## 10247           Manhattan Entire home/apt              1                 1
## 10248           Manhattan    Private room              2                66
## 10249            Brooklyn Entire home/apt              1                 1
## 10250           Manhattan Entire home/apt             10                 6
## 10251           Manhattan Entire home/apt              1               110
## 10252            Brooklyn Entire home/apt              2               161
## 10253           Manhattan    Private room              2                 2
## 10254            Brooklyn    Private room              1                10
## 10255           Manhattan Entire home/apt              5                 1
## 10256           Manhattan    Private room              1                11
## 10257            Brooklyn    Private room             15                 1
## 10258            Brooklyn    Private room             14                 3
## 10259           Manhattan Entire home/apt              1                 8
## 10260              Queens    Private room              2                 1
## 10261            Brooklyn Entire home/apt              4                10
## 10262           Manhattan Entire home/apt              4                 1
## 10263           Manhattan Entire home/apt              2               119
## 10264            Brooklyn    Private room              3                 7
## 10265            Brooklyn Entire home/apt             30                11
## 10266           Manhattan Entire home/apt              3                52
## 10267           Manhattan Entire home/apt              5                33
## 10268           Manhattan Entire home/apt              4                 1
## 10269            Brooklyn    Private room              2                 3
## 10270            Brooklyn Entire home/apt              7                31
## 10271            Brooklyn Entire home/apt              4                 4
## 10272            Brooklyn Entire home/apt              2               166
## 10273           Manhattan Entire home/apt              3                14
## 10274            Brooklyn Entire home/apt              6                 1
## 10275            Brooklyn Entire home/apt              1               178
## 10276           Manhattan    Private room              1                 1
## 10277            Brooklyn    Private room              7                 4
## 10278           Manhattan Entire home/apt              2                 3
## 10279               Bronx    Private room              1                59
## 10280           Manhattan Entire home/apt              7                 1
## 10281           Manhattan Entire home/apt              1                 1
## 10282              Queens Entire home/apt              1                 1
## 10283            Brooklyn    Private room              2                 7
## 10284            Brooklyn Entire home/apt              8                 2
## 10285           Manhattan Entire home/apt             30                 3
## 10286              Queens Entire home/apt              2                13
## 10287           Manhattan    Private room              1                13
## 10288           Manhattan Entire home/apt              2                 3
## 10289           Manhattan    Private room              3                 7
## 10290            Brooklyn    Private room              3                 5
## 10291            Brooklyn    Private room              5                28
## 10292           Manhattan    Private room              1                 1
## 10293           Manhattan Entire home/apt              5                 5
## 10294            Brooklyn Entire home/apt              2                21
## 10295            Brooklyn Entire home/apt              2                24
## 10296           Manhattan Entire home/apt             30                 5
## 10297            Brooklyn Entire home/apt              1                 1
## 10298            Brooklyn    Private room              1                 5
## 10299            Brooklyn Entire home/apt              5                12
## 10300           Manhattan Entire home/apt              1                 3
## 10301            Brooklyn Entire home/apt              4                 3
## 10302            Brooklyn    Private room              2                 2
## 10303            Brooklyn    Private room              2                75
## 10304              Queens Entire home/apt              1                16
## 10305              Queens Entire home/apt              4                 4
## 10306           Manhattan Entire home/apt              4                 2
## 10307            Brooklyn Entire home/apt              4                76
## 10308            Brooklyn Entire home/apt              2                 6
## 10309           Manhattan Entire home/apt              3                25
## 10310            Brooklyn    Private room              1                 3
## 10311            Brooklyn    Private room              2                22
## 10312            Brooklyn Entire home/apt              2               127
## 10313           Manhattan Entire home/apt              8                 6
## 10314            Brooklyn    Private room              1               145
## 10315           Manhattan Entire home/apt              7                 7
## 10316           Manhattan    Private room              5                 1
## 10317           Manhattan Entire home/apt              3                11
## 10318            Brooklyn Entire home/apt              3                10
## 10319           Manhattan Entire home/apt              2                10
## 10320           Manhattan Entire home/apt              1                 1
## 10321            Brooklyn    Private room              3                 6
## 10322           Manhattan    Private room              4                14
## 10323           Manhattan Entire home/apt              2                24
## 10324           Manhattan Entire home/apt              2                 9
## 10325               Bronx Entire home/apt              3                30
## 10326           Manhattan Entire home/apt              3                 2
## 10327            Brooklyn Entire home/apt              2                 2
## 10328            Brooklyn     Shared room             30                 5
## 10329              Queens Entire home/apt             30                32
## 10330           Manhattan Entire home/apt              2                 1
## 10331            Brooklyn Entire home/apt             29                12
## 10332           Manhattan Entire home/apt              3                 4
## 10333           Manhattan Entire home/apt              5                79
## 10334           Manhattan    Private room              2                 2
## 10335              Queens Entire home/apt             30                68
## 10336            Brooklyn    Private room              2                 1
## 10337           Manhattan Entire home/apt              2                 1
## 10338            Brooklyn    Private room              7                 4
## 10339           Manhattan Entire home/apt              1                 1
## 10340            Brooklyn    Private room              2                47
## 10341            Brooklyn Entire home/apt             14                 7
## 10342            Brooklyn Entire home/apt              1                23
## 10343            Brooklyn    Private room              3                 6
## 10344           Manhattan    Private room              1                49
## 10345           Manhattan Entire home/apt             31                 5
## 10346            Brooklyn    Private room              4               100
## 10347            Brooklyn    Private room             15                14
## 10348            Brooklyn    Private room              2                48
## 10349           Manhattan    Private room              1                 1
## 10350            Brooklyn    Private room              2                16
## 10351           Manhattan Entire home/apt              4                 1
## 10352           Manhattan Entire home/apt              3                74
## 10353           Manhattan Entire home/apt              3                 6
## 10354            Brooklyn Entire home/apt              5               201
## 10355           Manhattan Entire home/apt             30                 1
## 10356            Brooklyn Entire home/apt             14                 1
## 10357           Manhattan Entire home/apt              1                52
## 10358            Brooklyn Entire home/apt              3                 4
## 10359           Manhattan Entire home/apt              3                 2
## 10360           Manhattan    Private room              5               125
## 10361               Bronx    Private room              3                 2
## 10362           Manhattan    Private room              2               151
## 10363            Brooklyn Entire home/apt              1                 7
## 10364              Queens    Private room              2                21
## 10365           Manhattan    Private room              1                11
## 10366           Manhattan Entire home/apt              1                 1
## 10367            Brooklyn    Private room              5                34
## 10368           Manhattan Entire home/apt             53                 2
## 10369            Brooklyn Entire home/apt              5                 3
## 10370           Manhattan Entire home/apt             30                 7
## 10371           Manhattan Entire home/apt              4                10
## 10372            Brooklyn Entire home/apt              7                 6
## 10373           Manhattan Entire home/apt              2               143
## 10374           Manhattan    Private room              1                 1
## 10375           Manhattan Entire home/apt              1                 1
## 10376            Brooklyn Entire home/apt              3                16
## 10377            Brooklyn Entire home/apt              3                 9
## 10378            Brooklyn Entire home/apt              1                13
## 10379           Manhattan Entire home/apt              2               166
## 10380            Brooklyn Entire home/apt              2               127
## 10381           Manhattan Entire home/apt              4                18
## 10382            Brooklyn Entire home/apt              2                22
## 10383            Brooklyn Entire home/apt              4                 3
## 10384           Manhattan    Private room              2               136
## 10385           Manhattan    Private room              1                 2
## 10386               Bronx Entire home/apt              1                 8
## 10387           Manhattan    Private room              2                 1
## 10388            Brooklyn    Private room              3                 1
## 10389            Brooklyn Entire home/apt              2                37
## 10390            Brooklyn Entire home/apt              2                19
## 10391            Brooklyn    Private room              3                67
## 10392           Manhattan Entire home/apt              1                 1
## 10393           Manhattan Entire home/apt              5                 3
## 10394           Manhattan    Private room              1                 1
## 10395            Brooklyn Entire home/apt              2                18
## 10396              Queens    Private room              2                14
## 10397           Manhattan Entire home/apt              2                 3
## 10398            Brooklyn    Private room              3                46
## 10399           Manhattan Entire home/apt              1               156
## 10400           Manhattan    Private room              1                17
## 10401           Manhattan    Private room              1                 1
## 10402            Brooklyn Entire home/apt              3                83
## 10403            Brooklyn Entire home/apt              5                89
## 10404           Manhattan    Private room              1                 2
## 10405            Brooklyn    Private room              2                 3
## 10406            Brooklyn    Private room              1                 1
## 10407           Manhattan Entire home/apt             30                 1
## 10408            Brooklyn Entire home/apt              2                 4
## 10409              Queens Entire home/apt              2                20
## 10410           Manhattan Entire home/apt              1                 4
## 10411            Brooklyn Entire home/apt              3               128
## 10412            Brooklyn    Private room              5               102
## 10413           Manhattan    Private room              3               125
## 10414           Manhattan Entire home/apt              4                94
## 10415            Brooklyn    Private room              2                62
## 10416            Brooklyn Entire home/apt              1               140
## 10417            Brooklyn    Private room              5                12
## 10418           Manhattan Entire home/apt              1                 1
## 10419           Manhattan    Private room              2                62
## 10420            Brooklyn Entire home/apt              5                77
## 10421           Manhattan Entire home/apt             30                 3
## 10422           Manhattan Entire home/apt              3               177
## 10423            Brooklyn    Private room              1                30
## 10424            Brooklyn Entire home/apt              2                84
## 10425           Manhattan    Private room              2                 2
## 10426           Manhattan Entire home/apt             30                10
## 10427           Manhattan Entire home/apt             30                 5
## 10428           Manhattan Entire home/apt              3               117
## 10429           Manhattan Entire home/apt             30                 5
## 10430           Manhattan Entire home/apt              1                 2
## 10431              Queens    Private room              3                13
## 10432            Brooklyn Entire home/apt              4               128
## 10433            Brooklyn    Private room              1                 2
## 10434           Manhattan Entire home/apt              4               148
## 10435            Brooklyn    Private room              2               213
## 10436            Brooklyn    Private room              2                 4
## 10437           Manhattan Entire home/apt              1               152
## 10438              Queens Entire home/apt              2                38
## 10439              Queens    Private room              1                95
## 10440            Brooklyn    Private room              3                70
## 10441            Brooklyn Entire home/apt              1               119
## 10442           Manhattan Entire home/apt              1                81
## 10443           Manhattan Entire home/apt              3               151
## 10444            Brooklyn Entire home/apt              4                 1
## 10445           Manhattan Entire home/apt              2                64
## 10446              Queens Entire home/apt              4                74
## 10447           Manhattan    Private room              1                 1
## 10448            Brooklyn Entire home/apt             10                18
## 10449            Brooklyn    Private room              3                14
## 10450           Manhattan    Private room              3                49
## 10451           Manhattan Entire home/apt              2                51
## 10452            Brooklyn Entire home/apt              1                 1
## 10453           Manhattan Entire home/apt             20                 6
## 10454            Brooklyn    Private room              6                 3
## 10455           Manhattan Entire home/apt              1                15
## 10456            Brooklyn Entire home/apt              4                11
## 10457           Manhattan    Private room              1                 1
## 10458           Manhattan    Private room              3                21
## 10459           Manhattan Entire home/apt             30                21
## 10460            Brooklyn Entire home/apt             10                11
## 10461            Brooklyn Entire home/apt              4               132
## 10462           Manhattan    Private room             14                99
## 10463           Manhattan Entire home/apt              1               116
## 10464           Manhattan Entire home/apt              1                 1
## 10465           Manhattan Entire home/apt              4                 1
## 10466            Brooklyn    Private room              1                 1
## 10467            Brooklyn    Private room              2                11
## 10468            Brooklyn    Private room              1                 1
## 10469            Brooklyn Entire home/apt             30                 9
## 10470            Brooklyn Entire home/apt              2               180
## 10471           Manhattan Entire home/apt              1                 1
## 10472           Manhattan Entire home/apt              2                51
## 10473              Queens    Private room              1                49
## 10474            Brooklyn Entire home/apt              2                 2
## 10475           Manhattan Entire home/apt             30                 2
## 10476           Manhattan    Private room              4                 1
## 10477           Manhattan Entire home/apt              3                39
## 10478           Manhattan    Private room              1                 1
## 10479           Manhattan Entire home/apt              7                 1
## 10480           Manhattan Entire home/apt              6               106
## 10481            Brooklyn Entire home/apt             10                11
## 10482           Manhattan Entire home/apt              3                 4
## 10483              Queens Entire home/apt              2                 6
## 10484           Manhattan Entire home/apt              4                 3
## 10485           Manhattan Entire home/apt              4                16
## 10486           Manhattan Entire home/apt              1                 3
## 10487           Manhattan    Private room              1                 2
## 10488           Manhattan Entire home/apt              4               130
## 10489           Manhattan Entire home/apt              3                76
## 10490           Manhattan Entire home/apt              2                95
## 10491           Manhattan Entire home/apt              4                47
## 10492            Brooklyn    Private room              7                 3
## 10493            Brooklyn Entire home/apt              8                37
## 10494           Manhattan Entire home/apt              4                 2
## 10495            Brooklyn Entire home/apt              2                21
## 10496            Brooklyn    Private room              7                 2
## 10497           Manhattan Entire home/apt              4               114
## 10498           Manhattan Entire home/apt              5                13
## 10499            Brooklyn Entire home/apt              2                59
## 10500           Manhattan    Private room              3                 1
## 10501           Manhattan    Private room              3                 5
## 10502           Manhattan Entire home/apt              3               102
## 10503            Brooklyn    Private room              3                 1
## 10504           Manhattan Entire home/apt              7                 5
## 10505           Manhattan Entire home/apt              5                 2
## 10506           Manhattan Entire home/apt              4                 2
## 10507           Manhattan Entire home/apt              5                15
## 10508            Brooklyn    Private room              1                 2
## 10509           Manhattan Entire home/apt              1                 1
## 10510           Manhattan Entire home/apt              5                42
## 10511            Brooklyn    Private room              7                11
## 10512           Manhattan Entire home/apt              5                 1
## 10513            Brooklyn    Private room              2                 4
## 10514            Brooklyn Entire home/apt              3                 1
## 10515           Manhattan Entire home/apt              5                 7
## 10516              Queens Entire home/apt              5                 4
## 10517           Manhattan Entire home/apt             30                 7
## 10518            Brooklyn Entire home/apt              2                 2
## 10519            Brooklyn Entire home/apt              4               116
## 10520           Manhattan Entire home/apt              3                54
## 10521            Brooklyn Entire home/apt              2                 4
## 10522           Manhattan Entire home/apt              5                49
## 10523              Queens    Private room              2                26
## 10524            Brooklyn    Private room              3                 6
## 10525           Manhattan    Private room              1                 1
## 10526           Manhattan    Private room             30                10
## 10527           Manhattan    Private room              1                 1
## 10528           Manhattan Entire home/apt              3                 2
## 10529               Bronx    Private room              7                 9
## 10530           Manhattan Entire home/apt             30                 5
## 10531           Manhattan Entire home/apt              7                36
## 10532            Brooklyn    Private room              5                 2
## 10533            Brooklyn Entire home/apt              2                 8
## 10534            Brooklyn Entire home/apt              1                87
## 10535           Manhattan Entire home/apt              2                 1
## 10536           Manhattan Entire home/apt              6                 1
## 10537           Manhattan Entire home/apt              1                 3
## 10538            Brooklyn Entire home/apt              2                45
## 10539            Brooklyn Entire home/apt              3                 4
## 10540           Manhattan    Private room             10                 2
## 10541           Manhattan    Private room              1                 6
## 10542           Manhattan Entire home/apt              4                 8
## 10543           Manhattan    Private room              1                 2
## 10544           Manhattan Entire home/apt              3                 2
## 10545            Brooklyn Entire home/apt             90                78
## 10546            Brooklyn    Private room              2                30
## 10547           Manhattan    Private room             99                 6
## 10548            Brooklyn Entire home/apt              3               104
## 10549            Brooklyn Entire home/apt              3                20
## 10550           Manhattan    Private room              1                 3
## 10551           Manhattan    Private room              2                80
## 10552           Manhattan    Private room              4                70
## 10553           Manhattan    Private room              2               155
## 10554           Manhattan    Private room              2               169
## 10555           Manhattan Entire home/apt             30                 1
## 10556           Manhattan    Private room             20                 2
## 10557            Brooklyn Entire home/apt              4                 1
## 10558            Brooklyn Entire home/apt              3                 4
## 10559           Manhattan Entire home/apt              1                28
## 10560            Brooklyn Entire home/apt              7                46
## 10561            Brooklyn Entire home/apt              5                 2
## 10562            Brooklyn Entire home/apt              1                 1
## 10563           Manhattan    Private room              5                 1
## 10564           Manhattan    Private room              2                95
## 10565            Brooklyn    Private room              1                 2
## 10566           Manhattan Entire home/apt              3                31
## 10567            Brooklyn Entire home/apt              5                 4
## 10568           Manhattan Entire home/apt              2                39
## 10569           Manhattan Entire home/apt              2                88
## 10570            Brooklyn    Private room              2               100
## 10571            Brooklyn    Private room              1                 1
## 10572           Manhattan    Private room              1                 1
## 10573            Brooklyn Entire home/apt              3               102
## 10574           Manhattan Entire home/apt             30                10
## 10575           Manhattan Entire home/apt             30                11
## 10576            Brooklyn    Private room              1                 1
## 10577            Brooklyn    Private room             12                 2
## 10578           Manhattan Entire home/apt              2                 2
## 10579           Manhattan Entire home/apt              1                 1
## 10580           Manhattan Entire home/apt              2                14
## 10581           Manhattan    Private room              3                 2
## 10582              Queens    Private room              2                72
## 10583            Brooklyn Entire home/apt              2                 1
## 10584           Manhattan    Private room              1                 1
## 10585            Brooklyn    Private room              3                 4
## 10586           Manhattan Entire home/apt              2                31
## 10587              Queens Entire home/apt              1               126
## 10588           Manhattan Entire home/apt              5                 4
## 10589            Brooklyn    Private room              6                18
## 10590            Brooklyn    Private room              2                 1
## 10591           Manhattan Entire home/apt              3                 1
## 10592           Manhattan Entire home/apt              1               176
## 10593           Manhattan    Private room              1                 1
## 10594           Manhattan    Private room              1                 1
## 10595            Brooklyn Entire home/apt             55                10
## 10596              Queens Entire home/apt              3                88
## 10597           Manhattan Entire home/apt              2                60
## 10598           Manhattan Entire home/apt              2                 4
## 10599           Manhattan Entire home/apt              2               180
## 10600              Queens    Private room              4                42
## 10601            Brooklyn    Private room              2                42
## 10602            Brooklyn    Private room              3                17
## 10603           Manhattan    Private room              2                12
## 10604            Brooklyn    Private room              1                 1
## 10605           Manhattan Entire home/apt              4                 1
## 10606            Brooklyn Entire home/apt              3                39
## 10607           Manhattan     Shared room              2                18
## 10608            Brooklyn Entire home/apt              7                 3
## 10609            Brooklyn Entire home/apt              2                35
## 10610            Brooklyn Entire home/apt              3                43
## 10611            Brooklyn    Private room             14                 5
## 10612            Brooklyn Entire home/apt             30                 6
## 10613           Manhattan    Private room              2                17
## 10614            Brooklyn    Private room              1                 1
## 10615            Brooklyn    Private room              1               113
## 10616           Manhattan Entire home/apt              3                69
## 10617           Manhattan Entire home/apt             30                57
## 10618              Queens    Private room              2                33
## 10619           Manhattan Entire home/apt              2               185
## 10620           Manhattan    Private room             14                 1
## 10621           Manhattan Entire home/apt              6                79
## 10622            Brooklyn    Private room              1               117
## 10623           Manhattan Entire home/apt              2                 2
## 10624            Brooklyn Entire home/apt              1               120
## 10625           Manhattan Entire home/apt              4                10
## 10626           Manhattan    Private room              1               120
## 10627           Manhattan Entire home/apt              2                27
## 10628           Manhattan    Private room              1                 2
## 10629           Manhattan Entire home/apt              2                 5
## 10630            Brooklyn    Private room              1                 2
## 10631           Manhattan Entire home/apt              2                 8
## 10632           Manhattan Entire home/apt              4                 1
## 10633            Brooklyn    Private room              1                 6
## 10634            Brooklyn    Private room              1                 4
## 10635           Manhattan Entire home/apt             20                 1
## 10636           Manhattan Entire home/apt              1               142
## 10637           Manhattan Entire home/apt              3                12
## 10638            Brooklyn Entire home/apt             14                 9
## 10639            Brooklyn Entire home/apt              3                19
## 10640           Manhattan Entire home/apt              3                 2
## 10641           Manhattan Entire home/apt              1               287
## 10642            Brooklyn Entire home/apt              4                 1
## 10643           Manhattan Entire home/apt              1                 1
## 10644           Manhattan Entire home/apt              4                17
## 10645           Manhattan    Private room              2                93
## 10646            Brooklyn Entire home/apt              3                21
## 10647              Queens Entire home/apt              3                27
## 10648           Manhattan    Private room              2                 5
## 10649               Bronx    Private room              5                17
## 10650              Queens Entire home/apt              3                54
## 10651            Brooklyn    Private room              1               118
## 10652            Brooklyn Entire home/apt              4                64
## 10653            Brooklyn Entire home/apt              2                 9
## 10654            Brooklyn    Private room              2                 5
## 10655           Manhattan Entire home/apt              7                 1
## 10656           Manhattan Entire home/apt              1                 7
## 10657           Manhattan Entire home/apt              2                61
## 10658           Manhattan Entire home/apt              2                 5
## 10659           Manhattan    Private room              5                 4
## 10660            Brooklyn Entire home/apt              4                25
## 10661           Manhattan    Private room              1                 1
## 10662           Manhattan    Private room              3                 9
## 10663           Manhattan    Private room              3                 2
## 10664           Manhattan Entire home/apt              4                15
## 10665           Manhattan    Private room              1                 1
## 10666           Manhattan    Private room              2                 4
## 10667            Brooklyn Entire home/apt              1                 5
## 10668           Manhattan Entire home/apt              4               107
## 10669            Brooklyn Entire home/apt              5                 1
## 10670           Manhattan Entire home/apt              3                10
## 10671           Manhattan Entire home/apt              3                 1
## 10672           Manhattan    Private room              1               113
## 10673            Brooklyn    Private room              7                 2
## 10674           Manhattan Entire home/apt              4                76
## 10675            Brooklyn Entire home/apt              2                 4
## 10676            Brooklyn Entire home/apt              1               138
## 10677           Manhattan    Private room              3                10
## 10678              Queens Entire home/apt              5                 1
## 10679           Manhattan    Private room              2                 5
## 10680            Brooklyn    Private room              5                 1
## 10681           Manhattan Entire home/apt              3                 1
## 10682           Manhattan    Private room              2                 1
## 10683            Brooklyn    Private room              2                 1
## 10684            Brooklyn    Private room              2                70
## 10685           Manhattan Entire home/apt            160                 2
## 10686            Brooklyn Entire home/apt              2                96
## 10687           Manhattan Entire home/apt              2                 5
## 10688           Manhattan Entire home/apt              3                38
## 10689            Brooklyn    Private room             10                 1
## 10690           Manhattan    Private room              2                 8
## 10691            Brooklyn    Private room             25                 1
## 10692            Brooklyn    Private room             60                34
## 10693           Manhattan Entire home/apt              3                19
## 10694           Manhattan Entire home/apt             30                 1
## 10695              Queens Entire home/apt              3                39
## 10696           Manhattan     Shared room              2                 2
## 10697            Brooklyn Entire home/apt              2                18
## 10698           Manhattan    Private room              2                 3
## 10699            Brooklyn    Private room              3                15
## 10700            Brooklyn    Private room              2                 1
## 10701            Brooklyn Entire home/apt              2               172
## 10702            Brooklyn    Private room              2                 5
## 10703            Brooklyn    Private room              2                22
## 10704           Manhattan    Private room              1                85
## 10705            Brooklyn    Private room              3                 1
## 10706            Brooklyn    Private room              3                 3
## 10707           Manhattan Entire home/apt              3               145
## 10708            Brooklyn    Private room              5                 5
## 10709              Queens Entire home/apt              4                11
## 10710            Brooklyn    Private room             28                 2
## 10711            Brooklyn Entire home/apt              2               179
## 10712            Brooklyn    Private room              5                24
## 10713           Manhattan Entire home/apt              1                 1
## 10714            Brooklyn    Private room              1                 5
## 10715              Queens    Private room              2                53
## 10716              Queens    Private room              1               150
## 10717           Manhattan Entire home/apt              1                 2
## 10718            Brooklyn Entire home/apt              4                 8
## 10719           Manhattan Entire home/apt              2                 8
## 10720            Brooklyn    Private room              1                 2
## 10721              Queens    Private room             30                 3
## 10722            Brooklyn    Private room              3                 6
## 10723           Manhattan    Private room              1               123
## 10724           Manhattan Entire home/apt              1                 3
## 10725           Manhattan Entire home/apt              1               141
## 10726              Queens    Private room              1               156
## 10727              Queens Entire home/apt              3                 8
## 10728              Queens    Private room              1                14
## 10729            Brooklyn Entire home/apt              2               214
## 10730            Brooklyn    Private room              2                 9
## 10731            Brooklyn Entire home/apt              3                42
## 10732            Brooklyn    Private room              1                 1
## 10733           Manhattan Entire home/apt              4                63
## 10734            Brooklyn Entire home/apt              2                26
## 10735            Brooklyn Entire home/apt             40                 4
## 10736            Brooklyn    Private room              5                 8
## 10737           Manhattan Entire home/apt              1                 5
## 10738            Brooklyn    Private room              3                28
## 10739            Brooklyn Entire home/apt              1                 1
## 10740            Brooklyn    Private room              1                 1
## 10741           Manhattan    Private room              2                 1
## 10742            Brooklyn    Private room              3                11
## 10743           Manhattan Entire home/apt              2                13
## 10744           Manhattan    Private room              3                 1
## 10745            Brooklyn    Private room             12                 1
## 10746              Queens    Private room              3                 6
## 10747           Manhattan Entire home/apt              4                13
## 10748           Manhattan    Private room              3                32
## 10749            Brooklyn    Private room              4                47
## 10750           Manhattan    Private room              1                 7
## 10751            Brooklyn Entire home/apt              3                52
## 10752           Manhattan Entire home/apt              4                 6
## 10753            Brooklyn Entire home/apt              2                 1
## 10754            Brooklyn Entire home/apt              1                 1
## 10755           Manhattan    Private room              7                 1
## 10756           Manhattan    Private room              4                 2
## 10757           Manhattan    Private room              1                 2
## 10758              Queens Entire home/apt              4                 2
## 10759              Queens    Private room              2                 5
## 10760            Brooklyn Entire home/apt              4                 4
## 10761       Staten Island    Private room              2               112
## 10762           Manhattan Entire home/apt              7                 4
## 10763            Brooklyn Entire home/apt              2                 9
## 10764           Manhattan Entire home/apt              2                 1
## 10765           Manhattan Entire home/apt              1               136
## 10766           Manhattan Entire home/apt              1               111
## 10767            Brooklyn    Private room             10                 1
## 10768              Queens    Private room              1                 2
## 10769              Queens Entire home/apt              7                 2
## 10770            Brooklyn    Private room              1                 2
## 10771           Manhattan    Private room              2                24
## 10772           Manhattan Entire home/apt              3                 2
## 10773            Brooklyn Entire home/apt              7                38
## 10774            Brooklyn Entire home/apt              2                24
## 10775            Brooklyn Entire home/apt              2                 4
## 10776            Brooklyn    Private room              2                 5
## 10777            Brooklyn Entire home/apt              3               152
## 10778           Manhattan Entire home/apt              1                 2
## 10779           Manhattan    Private room              2                10
## 10780            Brooklyn Entire home/apt              1                11
## 10781            Brooklyn Entire home/apt              2                51
## 10782            Brooklyn    Private room              6                 2
## 10783           Manhattan Entire home/apt             30                 1
## 10784           Manhattan Entire home/apt             90                 1
## 10785            Brooklyn Entire home/apt             10                 2
## 10786            Brooklyn Entire home/apt              3               129
## 10787           Manhattan Entire home/apt              3               103
## 10788            Brooklyn Entire home/apt              2               115
## 10789            Brooklyn Entire home/apt              3                 3
## 10790           Manhattan Entire home/apt              2               148
## 10791            Brooklyn    Private room              2                 2
## 10792            Brooklyn Entire home/apt              7                 1
## 10793            Brooklyn    Private room              2                 9
## 10794           Manhattan Entire home/apt              2                 6
## 10795            Brooklyn    Private room              3                 5
## 10796           Manhattan    Private room              1                16
## 10797           Manhattan    Private room              3                18
## 10798            Brooklyn Entire home/apt              5                 4
## 10799           Manhattan Entire home/apt              5                 1
## 10800            Brooklyn     Shared room              1               104
## 10801           Manhattan Entire home/apt              3                19
## 10802           Manhattan    Private room              3               141
## 10803           Manhattan    Private room             30                 2
## 10804            Brooklyn Entire home/apt              6               155
## 10805            Brooklyn Entire home/apt             30                10
## 10806            Brooklyn Entire home/apt              7                 5
## 10807           Manhattan Entire home/apt              4                 1
## 10808            Brooklyn    Private room              1                 1
## 10809           Manhattan Entire home/apt              3                 4
## 10810            Brooklyn    Private room              2                 1
## 10811            Brooklyn Entire home/apt              1                11
## 10812            Brooklyn Entire home/apt              3                74
## 10813           Manhattan    Private room              1                 5
## 10814           Manhattan Entire home/apt             30                33
## 10815            Brooklyn    Private room              1                 2
## 10816           Manhattan Entire home/apt              3                30
## 10817            Brooklyn    Private room              1                 1
## 10818           Manhattan Entire home/apt              1                 1
## 10819            Brooklyn    Private room              7                 2
## 10820            Brooklyn Entire home/apt             28                 4
## 10821           Manhattan Entire home/apt              7                13
## 10822           Manhattan Entire home/apt              1               130
## 10823           Manhattan Entire home/apt              1               198
## 10824              Queens Entire home/apt              7                 2
## 10825            Brooklyn    Private room              7                11
## 10826           Manhattan Entire home/apt              2                23
## 10827           Manhattan Entire home/apt              4                15
## 10828           Manhattan Entire home/apt              2                 4
## 10829           Manhattan Entire home/apt              3                 3
## 10830            Brooklyn Entire home/apt              2                 5
## 10831           Manhattan Entire home/apt              5                 3
## 10832           Manhattan Entire home/apt              1               268
## 10833            Brooklyn    Private room              3                 5
## 10834            Brooklyn Entire home/apt             28               208
## 10835           Manhattan    Private room              1                19
## 10836           Manhattan Entire home/apt              2                19
## 10837           Manhattan    Private room              1                 1
## 10838           Manhattan Entire home/apt              5                20
## 10839           Manhattan Entire home/apt              2               118
## 10840            Brooklyn    Private room              5                 1
## 10841            Brooklyn    Private room              3                 6
## 10842            Brooklyn Entire home/apt              6                 1
## 10843           Manhattan    Private room              2                49
## 10844            Brooklyn Entire home/apt              2                75
## 10845            Brooklyn    Private room              2                18
## 10846            Brooklyn Entire home/apt              2               142
## 10847           Manhattan    Private room              1               103
## 10848            Brooklyn Entire home/apt             31                 8
## 10849           Manhattan Entire home/apt              4                10
## 10850            Brooklyn Entire home/apt              1                 3
## 10851           Manhattan    Private room              3                24
## 10852              Queens Entire home/apt              1                 2
## 10853           Manhattan Entire home/apt              4                13
## 10854            Brooklyn Entire home/apt              3                 5
## 10855           Manhattan    Private room              3                 1
## 10856           Manhattan    Private room              3                 1
## 10857           Manhattan    Private room              1                 2
## 10858           Manhattan    Private room              1                 2
## 10859           Manhattan    Private room              2                 1
## 10860           Manhattan Entire home/apt              4                 1
## 10861              Queens    Private room              7                 8
## 10862            Brooklyn Entire home/apt              4                52
## 10863            Brooklyn Entire home/apt             30                13
## 10864            Brooklyn Entire home/apt              3                 6
## 10865           Manhattan Entire home/apt              5                 3
## 10866              Queens    Private room              1                54
## 10867            Brooklyn    Private room              3                 2
## 10868           Manhattan    Private room              1                 2
## 10869            Brooklyn    Private room              7                 6
## 10870            Brooklyn    Private room              7                13
## 10871            Brooklyn    Private room              5                 1
## 10872            Brooklyn    Private room              5                 2
## 10873            Brooklyn Entire home/apt              2                 1
## 10874            Brooklyn Entire home/apt              2                67
## 10875       Staten Island    Private room              2               157
## 10876           Manhattan Entire home/apt              3                 6
## 10877            Brooklyn Entire home/apt              1                 7
## 10878            Brooklyn Entire home/apt              3                 1
## 10879            Brooklyn    Private room             18                 1
## 10880            Brooklyn Entire home/apt              2                70
## 10881            Brooklyn Entire home/apt              5                13
## 10882            Brooklyn Entire home/apt              7                 2
## 10883           Manhattan Entire home/apt              3                97
## 10884            Brooklyn    Private room             14                18
## 10885           Manhattan Entire home/apt             30                 1
## 10886           Manhattan Entire home/apt              4                48
## 10887            Brooklyn    Private room              2                 1
## 10888           Manhattan Entire home/apt             30                 1
## 10889            Brooklyn    Private room              1                 1
## 10890            Brooklyn Entire home/apt             28                12
## 10891           Manhattan Entire home/apt              5                 7
## 10892            Brooklyn Entire home/apt              1                 5
## 10893            Brooklyn Entire home/apt              3                33
## 10894           Manhattan    Private room              3               134
## 10895            Brooklyn Entire home/apt              3                74
## 10896           Manhattan Entire home/apt              2                30
## 10897           Manhattan    Private room              1                 2
## 10898            Brooklyn    Private room              1                 1
## 10899            Brooklyn    Private room              4                24
## 10900           Manhattan Entire home/apt              3                 1
## 10901            Brooklyn    Private room             10                 1
## 10902            Brooklyn    Private room              1                17
## 10903           Manhattan Entire home/apt              3                23
## 10904            Brooklyn    Private room              2                 1
## 10905            Brooklyn    Private room              1                 1
## 10906           Manhattan    Private room             28                42
## 10907            Brooklyn    Private room              1                90
## 10908            Brooklyn    Private room             15                14
## 10909           Manhattan    Private room              2                17
## 10910           Manhattan Entire home/apt             10                 3
## 10911               Bronx Entire home/apt              1               132
## 10912           Manhattan    Private room              1                 1
## 10913            Brooklyn    Private room              4                 8
## 10914           Manhattan Entire home/apt              3                26
## 10915            Brooklyn    Private room              4                 2
## 10916           Manhattan Entire home/apt             30                 1
## 10917           Manhattan    Private room              2                 3
## 10918           Manhattan    Private room              2               187
## 10919           Manhattan Entire home/apt             30                 3
## 10920            Brooklyn    Private room              3                 3
## 10921           Manhattan     Shared room              1                 1
## 10922           Manhattan Entire home/apt              1                 1
## 10923           Manhattan Entire home/apt              3                16
## 10924           Manhattan    Private room              2                42
## 10925              Queens Entire home/apt              3                 1
## 10926           Manhattan    Private room              1                 1
## 10927           Manhattan    Private room              9                 2
## 10928           Manhattan    Private room              2                51
## 10929            Brooklyn    Private room              3                 4
## 10930            Brooklyn    Private room              5                 1
## 10931           Manhattan Entire home/apt              6               100
## 10932           Manhattan Entire home/apt              1                 3
## 10933            Brooklyn    Private room              7                 2
## 10934           Manhattan    Private room              7                 4
## 10935            Brooklyn Entire home/apt              2               131
## 10936           Manhattan    Private room              1                 3
## 10937           Manhattan Entire home/apt             30                 2
## 10938           Manhattan Entire home/apt              4                 1
## 10939            Brooklyn Entire home/apt              3                 3
## 10940           Manhattan Entire home/apt             30                 1
## 10941            Brooklyn Entire home/apt              2                 6
## 10942            Brooklyn Entire home/apt              5                 1
## 10943            Brooklyn Entire home/apt              2                24
## 10944           Manhattan    Private room             30               100
## 10945           Manhattan Entire home/apt              2               137
## 10946            Brooklyn    Private room              5                 2
## 10947           Manhattan Entire home/apt              6                 5
## 10948           Manhattan    Private room             28                 2
## 10949            Brooklyn    Private room              1                 2
## 10950            Brooklyn Entire home/apt              2                 4
## 10951           Manhattan Entire home/apt              2                 1
## 10952           Manhattan    Private room              3                 1
## 10953            Brooklyn Entire home/apt              2                 5
## 10954           Manhattan Entire home/apt              2                 1
## 10955           Manhattan    Private room              1                28
## 10956           Manhattan Entire home/apt              7                 4
## 10957            Brooklyn    Private room              1                 6
## 10958           Manhattan Entire home/apt              4                 1
## 10959            Brooklyn    Private room              1                 1
## 10960            Brooklyn    Private room              5                10
## 10961           Manhattan    Private room              1                 1
## 10962           Manhattan    Private room              4               107
## 10963            Brooklyn    Private room              1               216
## 10964           Manhattan Entire home/apt              2                 4
## 10965           Manhattan Entire home/apt              2                18
## 10966           Manhattan Entire home/apt              3                59
## 10967            Brooklyn    Private room             14                 3
## 10968            Brooklyn    Private room              2                 1
## 10969            Brooklyn    Private room              1               113
## 10970            Brooklyn Entire home/apt              2                 5
## 10971            Brooklyn    Private room              3                77
## 10972            Brooklyn    Private room              3                62
## 10973           Manhattan Entire home/apt              5                70
## 10974           Manhattan Entire home/apt              5                 7
## 10975           Manhattan Entire home/apt              3                17
## 10976            Brooklyn    Private room             47                 7
## 10977            Brooklyn Entire home/apt              3                36
## 10978            Brooklyn    Private room              1                 3
## 10979            Brooklyn    Private room              2                 9
## 10980            Brooklyn Entire home/apt              5                13
## 10981            Brooklyn    Private room             10                 2
## 10982           Manhattan    Private room              3                21
## 10983           Manhattan    Private room              1                 1
## 10984           Manhattan Entire home/apt             31                24
## 10985           Manhattan Entire home/apt              4                 7
## 10986            Brooklyn    Private room              1                 9
## 10987           Manhattan Entire home/apt              4                 1
## 10988           Manhattan Entire home/apt              2                 5
## 10989            Brooklyn Entire home/apt              1                35
## 10990           Manhattan Entire home/apt              5                52
## 10991           Manhattan Entire home/apt              2                55
## 10992            Brooklyn Entire home/apt              3                 2
## 10993            Brooklyn Entire home/apt             30                16
## 10994           Manhattan    Private room              2                23
## 10995            Brooklyn Entire home/apt              6                 4
## 10996            Brooklyn Entire home/apt              4                 1
## 10997            Brooklyn Entire home/apt              9                10
## 10998            Brooklyn Entire home/apt              2                 1
## 10999            Brooklyn Entire home/apt              6                 1
## 11000           Manhattan Entire home/apt              2                 1
## 11001            Brooklyn Entire home/apt              7                 5
## 11002               Bronx    Private room              3                36
## 11003           Manhattan    Private room              3                 1
## 11004           Manhattan    Private room              2                 1
## 11005            Brooklyn Entire home/apt              2                 9
## 11006           Manhattan Entire home/apt             30                 6
## 11007           Manhattan    Private room              3                40
## 11008           Manhattan Entire home/apt              2                20
## 11009           Manhattan    Private room              1                 3
## 11010           Manhattan Entire home/apt              5                 4
## 11011            Brooklyn    Private room              2                63
## 11012            Brooklyn Entire home/apt              4                 6
## 11013           Manhattan Entire home/apt              2                 3
## 11014            Brooklyn    Private room              2                37
## 11015              Queens Entire home/apt              2                92
## 11016           Manhattan Entire home/apt             30                 1
## 11017              Queens Entire home/apt              3               117
## 11018           Manhattan Entire home/apt              1                 3
## 11019            Brooklyn    Private room              1                13
## 11020           Manhattan Entire home/apt             30                 1
## 11021            Brooklyn Entire home/apt              3                71
## 11022           Manhattan    Private room              3                55
## 11023           Manhattan Entire home/apt              5                 2
## 11024           Manhattan Entire home/apt              3                 1
## 11025            Brooklyn    Private room              1                 1
## 11026            Brooklyn    Private room              3                 1
## 11027            Brooklyn    Private room              2                 4
## 11028            Brooklyn Entire home/apt             14                 4
## 11029           Manhattan Entire home/apt              1                 1
## 11030           Manhattan Entire home/apt              3                 1
## 11031            Brooklyn    Private room              4                 2
## 11032           Manhattan Entire home/apt              2                 2
## 11033           Manhattan Entire home/apt              7                 5
## 11034           Manhattan Entire home/apt              4                 8
## 11035           Manhattan    Private room              8                 1
## 11036            Brooklyn Entire home/apt              2                17
## 11037           Manhattan    Private room              7                 1
## 11038            Brooklyn    Private room              8                 1
## 11039           Manhattan Entire home/apt             30                 1
## 11040           Manhattan    Private room              3                 4
## 11041            Brooklyn    Private room              2                32
## 11042            Brooklyn    Private room              7                 3
## 11043            Brooklyn Entire home/apt             30                 3
## 11044           Manhattan Entire home/apt              2                 6
## 11045           Manhattan Entire home/apt             30                 1
## 11046           Manhattan Entire home/apt              5                13
## 11047            Brooklyn    Private room              1                 2
## 11048            Brooklyn Entire home/apt              2                 2
## 11049              Queens Entire home/apt              1                 1
## 11050           Manhattan Entire home/apt             30                 1
## 11051       Staten Island    Private room              2               137
## 11052            Brooklyn Entire home/apt              2                 2
## 11053           Manhattan Entire home/apt             30                 3
## 11054            Brooklyn    Private room              6                 2
## 11055           Manhattan Entire home/apt              2                 8
## 11056              Queens    Private room              7                 1
## 11057           Manhattan    Private room              2                24
## 11058           Manhattan    Private room              2                 3
## 11059           Manhattan    Private room             15                 2
## 11060              Queens    Private room              2                59
## 11061            Brooklyn Entire home/apt              1                 1
## 11062              Queens    Private room              1                 2
## 11063           Manhattan Entire home/apt              1                 1
## 11064              Queens    Private room              2               113
## 11065           Manhattan    Private room              2                 1
## 11066           Manhattan Entire home/apt             30                 1
## 11067              Queens Entire home/apt              3                93
## 11068            Brooklyn    Private room              1                 1
## 11069           Manhattan Entire home/apt              2                29
## 11070            Brooklyn    Private room              7                 9
## 11071           Manhattan    Private room              4                 1
## 11072           Manhattan    Private room              2                16
## 11073           Manhattan Entire home/apt             13                21
## 11074            Brooklyn    Private room              3                19
## 11075            Brooklyn Entire home/apt              2                 7
## 11076           Manhattan Entire home/apt              3                 1
## 11077           Manhattan Entire home/apt              2                 5
## 11078            Brooklyn    Private room              1                 2
## 11079           Manhattan Entire home/apt              4               104
## 11080           Manhattan Entire home/apt              3                16
## 11081           Manhattan    Private room              1                 4
## 11082           Manhattan Entire home/apt              4                 3
## 11083           Manhattan Entire home/apt              7                20
## 11084           Manhattan Entire home/apt              2                 2
## 11085           Manhattan Entire home/apt              2                 1
## 11086           Manhattan    Private room              1                 3
## 11087           Manhattan Entire home/apt              1                 1
## 11088           Manhattan Entire home/apt              7                 1
## 11089            Brooklyn Entire home/apt              2                25
## 11090            Brooklyn    Private room              2                 6
## 11091            Brooklyn    Private room              1               186
## 11092            Brooklyn Entire home/apt              3                 3
## 11093            Brooklyn Entire home/apt              2                12
## 11094            Brooklyn Entire home/apt              2                20
## 11095              Queens Entire home/apt              7                 5
## 11096              Queens Entire home/apt              4                 5
## 11097            Brooklyn    Private room             28                11
## 11098            Brooklyn    Private room              3                 8
## 11099           Manhattan    Private room              1                 1
## 11100            Brooklyn    Private room              1                 1
## 11101            Brooklyn Entire home/apt              1                 1
## 11102            Brooklyn    Private room              7                26
## 11103            Brooklyn    Private room              1                 3
## 11104           Manhattan Entire home/apt              1                 1
## 11105            Brooklyn Entire home/apt              1                95
## 11106           Manhattan    Private room              1                 1
## 11107            Brooklyn    Private room              1                 1
## 11108            Brooklyn Entire home/apt              7                 3
## 11109           Manhattan    Private room              2                26
## 11110            Brooklyn    Private room              1                 4
## 11111            Brooklyn    Private room              2                 1
##       calculated_host_listings_count   lprice  lreviews   lnights
## 1                                  6 5.003946 2.1972246 0.0000000
## 2                                  2 5.416100 3.8066625 0.0000000
## 3                                  1 4.488636 5.5984220 0.0000000
## 4                                  1 4.382027 2.1972246 2.3025851
## 5                                  1 5.298317 4.3040651 1.0986123
## 6                                  1 4.094345 3.8918203 3.8066625
## 7                                  1 4.369448 6.0637852 0.6931472
## 8                                  1 4.369448 4.7706846 0.6931472
## 9                                  4 5.010635 5.0751738 0.0000000
## 10                                 1 4.905275 3.9702919 1.6094379
## 11                                 1 4.442651 5.2364420 0.6931472
## 12                                 3 4.488636 5.1179938 1.3862944
## 13                                 1 4.442651 4.7273878 0.6931472
## 14                                 1 4.787492 3.2958369 4.4998097
## 15                                 1 4.941642 4.9972123 0.6931472
## 16                                 1 5.370638 5.2882670 0.6931472
## 17                                 1 4.941642 5.5606816 0.0000000
## 18                                 1 4.595120 3.9702919 1.0986123
## 19                                 1 5.700444 2.1972246 1.0986123
## 20                                 6 4.867534 4.8675345 0.6931472
## 21                                 6 4.382027 3.6635616 0.0000000
## 22                                 6 4.700480 4.2626799 0.6931472
## 23                                 2 4.787492 4.4773368 0.6931472
## 24                                 2 4.094345 2.9444390 0.0000000
## 25                                 1 5.010635 4.0604430 2.3025851
## 26                                 3 3.784190 4.6821312 1.0986123
## 27                                 1 5.192957 3.3672958 2.6390573
## 28                                 3 3.912023 5.4889377 1.0986123
## 29                                 1 3.951244 4.4773368 0.6931472
## 30                                 3 4.007333 5.2832037 1.3862944
## 31                                 3 3.912023 5.6094718 1.0986123
## 32                                 2 4.248495 4.3040651 0.0000000
## 33                                 3 4.488636 5.1239640 1.3862944
## 34                                 2 4.442651 5.4424177 0.6931472
## 35                                 4 3.688879 5.3659760 0.0000000
## 36                                 2 4.219508 5.5012582 0.6931472
## 37                                 1 4.787492 2.7080502 1.0986123
## 38                                 1 4.787492 3.2188758 1.9459101
## 39                                 1 4.905275 4.3944492 1.3862944
## 40                                 1 5.010635 4.5747110 1.9459101
## 41                                 1 5.010635 2.3978953 3.3672958
## 42                                 1 4.867534 5.5134287 1.0986123
## 43                                 1 4.700480 4.1108739 1.9459101
## 44                                 1 4.744932 2.3978953 1.0986123
## 45                                 2 4.382027 4.9052748 1.0986123
## 46                                 3 4.382027 4.7184989 0.0000000
## 47                                 1 5.017280 4.2904594 0.6931472
## 48                                 1 5.429346 4.4067192 1.0986123
## 49                                 1 4.969813 5.7930136 0.6931472
## 50                                 1 5.298317 2.9444390 1.9459101
## 51                                 1 5.010635 4.6539604 3.4011974
## 52                                 1 4.700480 2.9444390 1.6094379
## 53                                 2 4.234107 5.6664267 0.6931472
## 54                                 3 3.891820 4.9272537 1.3862944
## 55                                 1 5.192957 3.0445224 3.4011974
## 56                                 1 4.382027 3.7376696 0.6931472
## 57                                 1 5.926926 1.6094379 5.1929569
## 58                                 2 5.521461 4.1896547 0.6931472
## 59                                 2 5.298317 4.9628446 3.4011974
## 60                                 2 4.007333 3.2958369 1.9459101
## 61                                 1 3.951244 5.2522734 3.4011974
## 62                                 1 5.416100 1.3862944 1.0986123
## 63                                 2 4.382027 5.8230459 0.0000000
## 64                                 1 5.616771 4.9972123 0.0000000
## 65                                 2 4.595120 4.6634391 0.0000000
## 66                                 1 5.416100 5.2470241 1.3862944
## 67                                 1 5.438079 3.8918203 2.1972246
## 68                                 1 3.931826 3.1354942 1.9459101
## 69                                 2 4.174387 3.8918203 0.6931472
## 70                                 1 4.653960 4.6539604 0.6931472
## 71                                 1 5.247024 3.0445224 1.6094379
## 72                                 1 5.298317 4.9558271 0.0000000
## 73                                 1 4.248495 3.2188758 3.4011974
## 74                                 1 4.553877 4.9628446 1.0986123
## 75                                 1 5.010635 5.1179938 1.0986123
## 76                                 4 4.976734 4.1108739 1.0986123
## 77                                 1 4.700480 3.9889840 3.4339872
## 78                                 1 5.652489 4.2484952 1.6094379
## 79                                 1 4.867534 2.7725887 1.7917595
## 80                                 1 4.543295 4.5432948 3.4011974
## 81                                 1 6.684612 3.2188758 0.0000000
## 82                                 1 4.653960 4.1108739 1.0986123
## 83                                 1 4.094345 5.2678582 1.0986123
## 84                                 1 3.912023 0.6931472 0.0000000
## 85                                 4 4.442651 5.1590553 1.0986123
## 86                                 1 4.174387 3.1780538 1.3862944
## 87                                 1 4.875197 5.1119878 1.3862944
## 88                                 6 4.584967 2.7725887 1.9459101
## 89                                 1 5.521461 3.0445224 1.9459101
## 90                                 1 4.605170 5.1239640 1.6094379
## 91                                 2 4.653960 4.7706846 1.0986123
## 92                                 1 4.941642 4.3944492 1.0986123
## 93                                 1 4.488636 0.0000000 0.0000000
## 94                                 2 4.584967 3.4011974 3.4011974
## 95                                 2 4.828314 4.9344739 1.9459101
## 96                                 3 4.094345 2.3978953 1.0986123
## 97                                 3 5.164786 5.4510385 0.6931472
## 98                                 1 4.174387 4.2195077 0.6931472
## 99                                 2 6.214608 3.8286414 1.3862944
## 100                                1 4.615121 5.8141305 1.0986123
## 101                                1 5.393628 4.4773368 3.4011974
## 102                                2 4.828314 5.0875963 4.4998097
## 103                                1 4.382027 3.3672958 3.4011974
## 104                                1 4.605170 5.1357984 0.6931472
## 105                                1 5.298317 2.9444390 3.4011974
## 106                                2 4.077537 5.8111410 0.6931472
## 107                                6 4.828314 2.9444390 0.6931472
## 108                                1 4.941642 2.4849066 1.9459101
## 109                                2 4.787492 6.1463293 3.4011974
## 110                                4 5.857933 1.9459101 0.6931472
## 111                                1 5.293305 3.6375862 1.6094379
## 112                                1 5.783825 5.7807435 1.0986123
## 113                                1 5.459586 3.2958369 1.7917595
## 114                                4 5.416100 4.7449321 0.0000000
## 115                                3 4.595120 5.8692969 0.6931472
## 116                                1 5.135798 5.2729996 0.6931472
## 117                                2 5.991465 2.7725887 0.6931472
## 118                                1 5.135798 2.5649494 1.9459101
## 119                                1 4.605170 3.2188758 1.3862944
## 120                                1 4.317488 2.1972246 0.6931472
## 121                                1 4.499810 2.1972246 0.0000000
## 122                                1 5.010635 3.0445224 1.6094379
## 123                                1 4.442651 3.5835189 2.7080502
## 124                                2 4.248495 4.1431347 1.0986123
## 125                                3 4.787492 5.0434251 1.0986123
## 126                                1 4.488636 5.5606816 1.0986123
## 127                                1 5.220356 4.2904594 1.6094379
## 128                                1 3.912023 5.2626902 1.0986123
## 129                                1 4.653960 3.4657359 1.0986123
## 130                                3 4.867534 3.9120230 0.6931472
## 131                                1 4.744932 3.2580965 3.3672958
## 132                                1 4.343805 0.6931472 0.6931472
## 133                                3 4.330733 6.0544393 0.6931472
## 134                                2 4.828314 5.4249500 1.0986123
## 135                                3 4.905275 4.4308168 1.3862944
## 136                                1 5.521461 1.0986123 3.3672958
## 137                                1 5.293305 2.3025851 1.0986123
## 138                                1 4.941642 1.3862944 0.6931472
## 139                                1 4.941642 0.0000000 0.6931472
## 140                                2 4.744932 4.8202816 1.0986123
## 141                                1 5.075174 2.3978953 1.0986123
## 142                                1 5.273000 5.4806389 1.3862944
## 143                                1 5.273000 3.4011974 1.0986123
## 144                                4 4.382027 5.2983174 1.0986123
## 145                                5 3.784190 3.2958369 2.0794415
## 146                                1 5.049856 4.3694479 1.3862944
## 147                                1 4.442651 2.1972246 2.7080502
## 148                                1 4.828314 5.0434251 1.0986123
## 149                                1 4.744932 1.3862944 2.7080502
## 150                                1 4.234107 3.5263605 0.6931472
## 151                                1 5.416100 4.8978398 3.8066625
## 152                                1 4.828314 3.2958369 1.7917595
## 153                                2 5.389072 4.8362819 1.3862944
## 154                                1 6.163315 3.1354942 1.0986123
## 155                                2 4.595120 5.4553211 0.0000000
## 156                                2 4.234107 5.3082677 1.3862944
## 157                                1 4.369448 3.3322045 3.4011974
## 158                                2 4.905275 5.7333413 0.6931472
## 159                                1 5.521461 2.6390573 1.0986123
## 160                                1 5.521461 1.3862944 1.0986123
## 161                                1 5.521461 4.3820266 0.6931472
## 162                                1 4.382027 0.6931472 1.0986123
## 163                                3 4.248495 5.6835798 0.6931472
## 164                                3 5.105945 5.0106353 0.6931472
## 165                                1 4.248495 5.1119878 0.6931472
## 166                                1 3.912023 3.8501476 0.6931472
## 167                                3 3.688879 5.3890717 0.0000000
## 168                                1 5.010635 5.2626902 0.6931472
## 169                                4 4.828314 4.4308168 0.0000000
## 170                                1 5.278115 4.7361984 1.0986123
## 171                                2 4.700480 5.3612922 0.6931472
## 172                                1 5.135798 4.4543473 1.0986123
## 173                                3 5.105945 4.3820266 1.0986123
## 174                                1 5.010635 3.6375862 3.2580965
## 175                                1 4.605170 2.8903718 0.6931472
## 176                                2 4.174387 5.3278762 0.6931472
## 177                                5 5.857933 2.3025851 2.0794415
## 178                                2 4.595120 4.8040210 1.3862944
## 179                                1 5.298317 3.4965076 1.3862944
## 180                                1 5.010635 3.9512437 1.6094379
## 181                                4 4.499810 4.8362819 1.0986123
## 182                                3 4.787492 3.9318256 1.0986123
## 183                                1 4.317488 5.2933048 1.0986123
## 184                                1 5.164786 3.4011974 3.2580965
## 185                                1 4.828314 1.0986123 1.0986123
## 186                                1 5.616771 3.7135721 0.0000000
## 187                                1 5.700444 4.6913479 0.6931472
## 188                                3 4.905275 5.0172798 1.6094379
## 189                                1 4.418841 5.6524892 0.0000000
## 190                                1 4.812184 5.9269260 0.0000000
## 191                                2 4.007333 3.9512437 0.6931472
## 192                                1 5.273000 2.3025851 1.6094379
## 193                                1 4.382027 2.3978953 0.6931472
## 194                                5 4.584967 3.4965076 3.4011974
## 195                                5 4.941642 1.7917595 1.9459101
## 196                                5 5.579730 3.6375862 1.9459101
## 197                                2 5.517453 5.8805330 0.6931472
## 198                                1 4.653960 2.3025851 1.7917595
## 199                                3 4.605170 5.4205350 0.6931472
## 200                                5 4.795791 4.6443909 0.0000000
## 201                                3 3.806662 4.9272537 0.0000000
## 202                                1 4.605170 5.3181200 1.6094379
## 203                                1 4.941642 5.5333895 0.6931472
## 204                                1 4.262680 3.1354942 0.6931472
## 205                                1 4.867534 4.7449321 0.6931472
## 206                                1 5.293305 4.8598124 1.6094379
## 207                                2 4.234107 4.4067192 1.3862944
## 208                                1 4.219508 3.6109179 1.0986123
## 209                                1 4.867534 5.3181200 0.0000000
## 210                                1 5.273000 4.2341065 0.6931472
## 211                                5 4.158883 5.2574954 0.0000000
## 212                                1 4.941642 2.8332133 0.6931472
## 213                                1 5.068904 5.4026774 0.6931472
## 214                                1 5.241747 5.3230100 1.0986123
## 215                                1 5.521461 4.5432948 1.0986123
## 216                                1 5.476464 1.9459101 1.0986123
## 217                                1 5.720312 4.6821312 0.6931472
## 218                                2 5.043425 5.4026774 1.0986123
## 219                                2 4.094345 6.1268692 0.0000000
## 220                                1 4.905275 3.0445224 0.6931472
## 221                                1 4.787492 2.8332133 1.9459101
## 222                                1 5.010635 3.7135721 1.0986123
## 223                                5 4.941642 0.0000000 2.6390573
## 224                                1 4.905275 4.2341065 0.6931472
## 225                                2 5.521461 2.8903718 1.3862944
## 226                                1 5.521461 4.4067192 3.4011974
## 227                                1 6.214608 4.5432948 1.3862944
## 228                                1 5.416100 2.3025851 1.6094379
## 229                                2 4.828314 5.2094862 3.3322045
## 230                                5 4.521789 5.2417470 0.0000000
## 231                                1 5.164786 0.0000000 0.6931472
## 232                                1 4.595120 4.8441871 0.6931472
## 233                                1 5.273000 1.3862944 1.3862944
## 234                                3 4.941642 4.9052748 1.0986123
## 235                                1 4.905275 3.0445224 0.6931472
## 236                                1 6.214608 3.5553481 0.6931472
## 237                                2 4.382027 2.3025851 2.6390573
## 238                                2 4.787492 5.1416636 1.3862944
## 239                                1 4.700480 4.5217886 5.2983174
## 240                                1 4.174387 5.4722707 1.0986123
## 241                                1 4.867534 4.0253517 3.9120230
## 242                                1 4.595120 4.7095302 1.0986123
## 243                                6 3.583519 5.2626902 0.6931472
## 244                                6 3.610918 4.9904326 0.6931472
## 245                                6 3.610918 5.1761497 0.6931472
## 246                                2 5.164786 5.2203558 1.0986123
## 247                                2 5.323010 4.1271344 2.1972246
## 248                                3 5.652489 4.8202816 1.0986123
## 249                                2 4.077537 5.1984970 0.6931472
## 250                                6 3.583519 5.8081425 0.6931472
## 251                                1 4.595120 6.0890449 1.6094379
## 252                                2 3.663562 3.8066625 0.0000000
## 253                                2 4.094345 2.1972246 2.6390573
## 254                               13 4.653960 3.6375862 0.6931472
## 255                                2 4.905275 5.5134287 0.6931472
## 256                                2 5.966147 4.9628446 1.6094379
## 257                                4 4.248495 3.5835189 1.0986123
## 258                                4 4.094345 2.6390573 2.8332133
## 259                                1 4.605170 5.6312118 1.0986123
## 260                                4 4.248495 2.8903718 1.3862944
## 261                                1 4.700480 3.9120230 1.7917595
## 262                                2 4.094345 5.4249500 0.6931472
## 263                                1 4.499810 0.0000000 2.6390573
## 264                                2 4.219508 5.3132060 0.6931472
## 265                                1 4.744932 5.3471075 0.6931472
## 266                                1 4.317488 4.1588831 1.6094379
## 267                                1 4.859812 1.6094379 1.9459101
## 268                                1 4.867534 3.8918203 2.3025851
## 269                                1 4.553877 4.8828019 1.3862944
## 270                                1 4.317488 2.9957323 1.0986123
## 271                                1 5.164786 2.3978953 0.6931472
## 272                                1 5.247024 3.9318256 1.0986123
## 273                                5 3.891820 2.7080502 3.0445224
## 274                                1 5.356586 4.2046926 1.0986123
## 275                                3 4.553877 4.6913479 0.0000000
## 276                                1 4.941642 2.1972246 0.6931472
## 277                                1 4.905275 5.2311086 1.7917595
## 278                                2 5.010635 5.3659760 0.6931472
## 279                                2 5.247024 4.2341065 1.0986123
## 280                                1 4.820282 3.0910425 3.3322045
## 281                                1 4.905275 4.0253517 3.4011974
## 282                                1 4.804021 4.5325995 1.0986123
## 283                                2 4.691348 4.6443909 0.0000000
## 284                                1 4.442651 4.1588831 3.4011974
## 285                                2 4.976734 4.8441871 1.0986123
## 286                                1 5.273000 3.4011974 2.3978953
## 287                                3 5.521461 4.6634391 0.6931472
## 288                                1 4.828314 1.7917595 1.0986123
## 289                                1 6.354370 5.2522734 0.6931472
## 290                                1 5.010635 3.8712010 3.4011974
## 291                                1 4.248495 3.8501476 1.6094379
## 292                                1 4.499810 4.7874917 0.6931472
## 293                                1 4.174387 3.9512437 1.0986123
## 294                                4 6.214608 3.8712010 0.6931472
## 295                                2 5.521461 3.4657359 1.0986123
## 296                                1 4.828314 3.7612001 3.2188758
## 297                                1 5.298317 3.6635616 3.4011974
## 298                                1 5.433722 3.9120230 0.0000000
## 299                                2 4.499810 1.3862944 3.4011974
## 300                                1 4.700480 3.6375862 2.5649494
## 301                                1 4.077537 3.3672958 1.0986123
## 302                                1 5.273000 4.0775374 1.3862944
## 303                                2 5.129899 4.2195077 0.0000000
## 304                                3 4.727388 3.2580965 2.6390573
## 305                                1 5.521461 3.4339872 2.6390573
## 306                                1 4.744932 5.2882670 0.6931472
## 307                                1 4.007333 0.0000000 0.6931472
## 308                                2 4.234107 5.3936275 0.6931472
## 309                                1 5.010635 5.6559918 1.0986123
## 310                                3 5.129899 5.9864520 0.6931472
## 311                               28 5.187386 3.5835189 1.0986123
## 312                                1 5.010635 3.5835189 1.0986123
## 313                                1 4.905275 1.7917595 1.3862944
## 314                                1 5.857933 2.6390573 1.7917595
## 315                                6 4.787492 4.3307333 2.6390573
## 316                                1 4.262680 5.2040067 0.6931472
## 317                               28 5.855072 2.0794415 1.0986123
## 318                               28 5.855072 1.9459101 1.0986123
## 319                                2 5.105945 3.5263605 3.4011974
## 320                               28 5.517453 0.6931472 1.0986123
## 321                                2 4.605170 4.1896547 1.0986123
## 322                                2 5.298317 4.3820266 1.0986123
## 323                                1 5.129899 5.4806389 1.3862944
## 324                                1 5.220356 3.8286414 1.0986123
## 325                                1 4.174387 5.4293456 0.6931472
## 326                                1 4.867534 1.6094379 3.5553481
## 327                                1 5.293305 2.0794415 3.4011974
## 328                                1 5.416100 3.4965076 0.6931472
## 329                               28 5.187386 2.5649494 1.0986123
## 330                                1 5.010635 1.6094379 1.6094379
## 331                                1 4.934474 5.9610053 0.0000000
## 332                                2 4.553877 5.4071718 1.0986123
## 333                                5 4.369448 2.3978953 2.7080502
## 334                                2 5.010635 5.0172798 0.6931472
## 335                                4 4.499810 5.3844951 1.0986123
## 336                                2 4.787492 4.3174881 0.6931472
## 337                                2 4.382027 3.7376696 0.0000000
## 338                                1 5.164786 5.9135030 0.6931472
## 339                                1 4.787492 4.6443909 1.6094379
## 340                                1 4.941642 2.5649494 1.9459101
## 341                                1 5.298317 1.3862944 1.6094379
## 342                                3 5.105945 2.3978953 1.3862944
## 343                                3 4.828314 0.0000000 1.3862944
## 344                                1 4.867534 2.9444390 3.4011974
## 345                                2 4.174387 4.8751973 1.9459101
## 346                                1 4.812184 2.7080502 3.4011974
## 347                                1 4.204693 4.9126549 0.6931472
## 348                                1 3.912023 3.7612001 0.0000000
## 349                                1 4.867534 4.5849675 1.9459101
## 350                                1 4.605170 3.4339872 1.0986123
## 351                                1 5.356586 3.8066625 3.0445224
## 352                                1 5.247024 4.8202816 1.0986123
## 353                               28 6.395262 2.1972246 1.0986123
## 354                                2 5.517453 5.1119878 1.6094379
## 355                                1 4.248495 2.5649494 3.2958369
## 356                                5 4.605170 2.7080502 3.4011974
## 357                                2 4.094345 5.9401713 1.0986123
## 358                                1 4.905275 4.4543473 0.6931472
## 359                                3 5.164786 5.5134287 1.0986123
## 360                                1 4.787492 3.8918203 1.6094379
## 361                                1 5.129899 3.9889840 2.8903718
## 362                                1 5.105945 1.0986123 1.9459101
## 363                                1 4.499810 0.0000000 0.0000000
## 364                                1 5.416100 4.0253517 0.6931472
## 365                                2 4.553877 5.0937502 0.6931472
## 366                                2 4.007333 5.5093883 0.6931472
## 367                                1 4.442651 4.7535902 2.3025851
## 368                                2 5.293305 3.2958369 2.6390573
## 369                                3 5.351858 3.9512437 0.0000000
## 370                                1 4.976734 3.6635616 1.7917595
## 371                                1 4.174387 3.5553481 2.6390573
## 372                                1 4.595120 5.7683210 0.0000000
## 373                                1 4.700480 3.4011974 1.3862944
## 374                                4 4.382027 5.4161004 1.0986123
## 375                                1 5.010635 4.5538769 3.4011974
## 376                                1 4.700480 4.2484952 1.3862944
## 377                                1 5.669881 3.5553481 0.6931472
## 378                                1 5.247024 3.9120230 1.3862944
## 379                                1 5.298317 3.3672958 0.6931472
## 380                                2 5.105945 3.1354942 0.6931472
## 381                                2 4.700480 4.9558271 0.6931472
## 382                                1 5.978886 4.2484952 0.6931472
## 383                                2 4.595120 3.6375862 0.6931472
## 384                                2 3.663562 4.4067192 0.0000000
## 385                                3 5.241747 5.9989366 0.6931472
## 386                                1 4.442651 1.0986123 0.0000000
## 387                                1 5.560682 1.0986123 3.4011974
## 388                                5 4.804021 4.7535902 0.0000000
## 389                                1 5.105945 5.1647860 0.6931472
## 390                                3 4.574711 3.3322045 1.0986123
## 391                                1 5.135798 3.1780538 1.3862944
## 392                                1 4.828314 2.7080502 0.6931472
## 393                                1 4.867534 4.6539604 1.3862944
## 394                                1 5.416100 3.0910425 2.3025851
## 395                                2 3.912023 5.5721540 0.6931472
## 396                                2 5.135798 4.4543473 1.0986123
## 397                                1 4.882802 2.3025851 1.3862944
## 398                                1 5.521461 2.8903718 1.9459101
## 399                                1 4.948760 2.0794415 1.6094379
## 400                                1 4.158883 4.2484952 2.9957323
## 401                                1 5.517453 5.0106353 1.0986123
## 402                                1 4.369448 4.7449321 0.6931472
## 403                                1 5.220356 4.2341065 0.6931472
## 404                                1 4.787492 5.4467374 1.0986123
## 405                                1 6.204558 3.5553481 0.0000000
## 406                                1 5.926926 2.8903718 1.0986123
## 407                                1 5.164786 4.2195077 1.0986123
## 408                                1 5.010635 3.0910425 1.3862944
## 409                                1 5.556828 2.8332133 2.0794415
## 410                                1 4.564348 3.5263605 0.0000000
## 411                                1 4.976734 2.0794415 1.9459101
## 412                                1 4.553877 0.6931472 1.6094379
## 413                                1 5.521461 3.9512437 1.3862944
## 414                                2 5.686975 4.3040651 0.6931472
## 415                                1 5.164786 2.8903718 1.0986123
## 416                                1 6.111467 4.2766661 0.6931472
## 417                                1 5.105945 5.2522734 0.6931472
## 418                                1 4.343805 5.2832037 0.0000000
## 419                                1 5.521461 2.9444390 1.3862944
## 420                                1 4.859812 6.0258660 0.0000000
## 421                                4 4.584967 2.0794415 0.6931472
## 422                                1 4.553877 3.2188758 1.9459101
## 423                                5 4.007333 4.7791235 1.0986123
## 424                                3 5.703782 5.3132060 0.6931472
## 425                                3 3.737670 3.9702919 3.6888795
## 426                                1 4.828314 4.6443909 0.6931472
## 427                                1 5.164786 5.1647860 1.0986123
## 428                                3 4.317488 3.6375862 1.0986123
## 429                                1 5.541264 3.6635616 3.8066625
## 430                                1 4.276666 4.4773368 3.4339872
## 431                                4 5.105945 3.2958369 0.0000000
## 432                                1 5.105945 4.7621739 1.6094379
## 433                                2 4.317488 3.7612001 1.0986123
## 434                                1 4.867534 1.3862944 1.6094379
## 435                                1 4.934474 5.9532433 0.6931472
## 436                                3 4.477337 4.1588831 0.0000000
## 437                                3 4.382027 3.6635616 0.0000000
## 438                                1 5.010635 3.6109179 0.6931472
## 439                                1 5.298317 2.3025851 1.0986123
## 440                                1 5.298317 4.6347290 0.6931472
## 441                                3 3.737670 3.7135721 3.6888795
## 442                                1 4.499810 1.0986123 1.7917595
## 443                                1 5.686975 5.4249500 1.0986123
## 444                                1 6.109248 3.6109179 1.6094379
## 445                                1 4.867534 3.3672958 0.6931472
## 446                                3 4.488636 5.3230100 1.0986123
## 447                                2 5.288267 3.7376696 1.6094379
## 448                                3 4.595120 5.6347896 0.6931472
## 449                                3 3.828641 4.4543473 1.3862944
## 450                                1 4.941642 3.9889840 0.6931472
## 451                                1 6.214608 1.9459101 1.9459101
## 452                                2 4.317488 4.0430513 1.6094379
## 453                                3 3.496508 3.4339872 3.7841896
## 454                                1 5.521461 5.2364420 3.4339872
## 455                                1 4.094345 6.1737861 1.0986123
## 456                                1 4.317488 3.5263605 0.6931472
## 457                                1 5.857933 1.7917595 1.6094379
## 458                                2 5.323010 1.0986123 2.1972246
## 459                                1 5.389072 0.6931472 1.6094379
## 460                                6 4.094345 2.9957323 0.0000000
## 461                                1 5.220356 4.8598124 0.6931472
## 462                                1 5.247024 4.9904326 1.0986123
## 463                                1 4.653960 4.6151205 3.3322045
## 464                                2 5.521461 2.3978953 0.6931472
## 465                                1 5.164786 2.3978953 4.1743873
## 466                                2 4.174387 3.7135721 0.6931472
## 467                                1 4.317488 4.4659081 0.6931472
## 468                                1 3.610918 4.7621739 1.3862944
## 469                                2 4.442651 4.4543473 0.6931472
## 470                                1 4.369448 2.7080502 0.6931472
## 471                                2 4.442651 3.5553481 0.6931472
## 472                                2 5.135798 2.8332133 0.6931472
## 473                                2 4.744932 1.0986123 1.0986123
## 474                                2 4.488636 3.7612001 1.6094379
## 475                                1 3.891820 5.1239640 1.0986123
## 476                                1 4.510860 5.4847969 1.0986123
## 477                                1 5.991465 4.6539604 0.6931472
## 478                                1 5.010635 2.3978953 0.6931472
## 479                               11 7.600902 3.4011974 3.4011974
## 480                                1 4.574711 3.4339872 1.0986123
## 481                                2 4.605170 3.8918203 1.3862944
## 482                                1 5.187386 3.1354942 1.3862944
## 483                                2 6.214608 2.9957323 0.6931472
## 484                                1 6.061457 2.8903718 2.3025851
## 485                                1 5.241747 4.4998097 1.7917595
## 486                                1 4.787492 4.5951199 0.6931472
## 487                                3 5.703782 1.7917595 0.0000000
## 488                                8 4.672829 3.0445224 3.4011974
## 489                                8 4.553877 3.1780538 3.4011974
## 490                                1 5.293305 4.7095302 0.6931472
## 491                                1 4.787492 4.4543473 0.6931472
## 492                                2 5.293305 4.1896547 2.7080502
## 493                                2 4.828314 5.6021188 0.6931472
## 494                                1 4.248495 5.4249500 0.6931472
## 495                                1 4.317488 4.3820266 1.3862944
## 496                                1 4.605170 1.6094379 3.4011974
## 497                                2 4.595120 5.2311086 0.6931472
## 498                                1 5.521461 0.6931472 0.0000000
## 499                                1 5.857933 0.0000000 1.7917595
## 500                                1 5.135798 4.2046926 1.0986123
## 501                                1 5.105945 4.1431347 0.0000000
## 502                                1 4.595120 4.4886364 0.0000000
## 503                                1 5.541264 0.0000000 1.3862944
## 504                                1 5.129899 5.1761497 1.0986123
## 505                                1 4.595120 4.4998097 1.3862944
## 506                                1 5.129899 3.6635616 1.9459101
## 507                                1 5.075174 3.7376696 1.0986123
## 508                                1 5.370638 3.4965076 1.0986123
## 509                                1 4.867534 5.1873858 1.0986123
## 510                                2 4.700480 4.3944492 1.0986123
## 511                                2 5.010635 3.7612001 3.3322045
## 512                                1 4.174387 3.9512437 3.4011974
## 513                                1 4.317488 5.0751738 0.6931472
## 514                                2 5.003946 3.1354942 1.7917595
## 515                                1 4.488636 3.5553481 1.7917595
## 516                                1 3.912023 5.4161004 0.0000000
## 517                                2 3.761200 5.9939614 0.0000000
## 518                                2 3.737670 4.2766661 0.0000000
## 519                                1 4.442651 3.8286414 0.0000000
## 520                                1 4.934474 4.4188406 1.0986123
## 521                                2 4.653960 5.3518581 0.0000000
## 522                                1 5.579730 2.7080502 1.6094379
## 523                                1 5.003946 4.8040210 0.0000000
## 524                                2 4.219508 5.6869754 0.6931472
## 525                                1 4.595120 5.3327188 1.0986123
## 526                                2 4.317488 3.9120230 1.0986123
## 527                                1 4.605170 5.6094718 0.6931472
## 528                                1 5.075174 3.2188758 3.4011974
## 529                                1 5.247024 4.6539604 1.3862944
## 530                                3 4.204693 4.2766661 1.3862944
## 531                                1 5.247024 2.0794415 0.0000000
## 532                                6 5.513429 4.0604430 0.6931472
## 533                                1 4.605170 2.0794415 1.7917595
## 534                                2 4.553877 5.1474945 1.0986123
## 535                                1 5.010635 5.7990927 0.0000000
## 536                                1 4.976734 4.8121844 1.0986123
## 537                                1 3.713572 4.0073332 0.6931472
## 538                                1 4.787492 4.4659081 1.3862944
## 539                                2 3.912023 5.5529596 1.0986123
## 540                                1 5.056246 1.3862944 0.6931472
## 541                                1 5.273000 3.4339872 2.6390573
## 542                                2 4.248495 4.8520303 1.3862944
## 543                                1 5.220356 2.6390573 1.0986123
## 544                                3 4.976734 3.4011974 1.0986123
## 545                                1 3.912023 5.5529596 3.3322045
## 546                                3 5.220356 5.4293456 1.0986123
## 547                                1 5.521461 4.0943446 0.0000000
## 548                                1 4.382027 2.1972246 4.4998097
## 549                                1 5.438079 5.1873858 0.6931472
## 550                                1 4.605170 2.1972246 1.9459101
## 551                                1 3.688879 0.0000000 0.0000000
## 552                                1 5.298317 3.2188758 3.4011974
## 553                                1 4.382027 0.6931472 0.6931472
## 554                                3 4.369448 5.0238805 1.0986123
## 555                                8 4.553877 3.1780538 3.4011974
## 556                                3 5.703782 3.8066625 0.6931472
## 557                                1 4.605170 1.9459101 3.4011974
## 558                                1 4.382027 2.9444390 1.9459101
## 559                                1 4.700480 3.1780538 0.0000000
## 560                                2 5.147494 2.0794415 1.3862944
## 561                                2 5.293305 3.3672958 0.0000000
## 562                                2 5.293305 2.6390573 0.0000000
## 563                                1 4.605170 3.4965076 0.0000000
## 564                                1 4.007333 4.5951199 1.3862944
## 565                                3 4.317488 4.0775374 1.0986123
## 566                                1 4.983607 4.9558271 1.0986123
## 567                                1 4.753590 3.0910425 3.3672958
## 568                                2 5.010635 4.4067192 1.0986123
## 569                                6 4.787492 3.1354942 0.6931472
## 570                                1 5.293305 3.4657359 1.3862944
## 571                                1 5.010635 3.1780538 1.6094379
## 572                                2 4.234107 4.0775374 0.0000000
## 573                                2 5.703782 1.7917595 4.0073332
## 574                                1 5.438079 2.8903718 1.3862944
## 575                                1 4.828314 1.0986123 1.3862944
## 576                                3 4.369448 4.7449321 1.0986123
## 577                                2 4.867534 5.0369526 1.0986123
## 578                               11 5.476464 5.0998664 0.0000000
## 579                                1 4.317488 4.3307333 1.7917595
## 580                                2 5.393628 4.7535902 1.0986123
## 581                                4 4.382027 5.4553211 1.0986123
## 582                                1 5.662960 4.7874917 0.6931472
## 583                                1 4.905275 4.4067192 1.3862944
## 584                                1 5.416100 2.5649494 1.0986123
## 585                                1 4.700480 4.0775374 3.4011974
## 586                                1 4.605170 4.1431347 1.9459101
## 587                                1 4.867534 3.9512437 0.6931472
## 588                                3 4.488636 5.6276211 0.0000000
## 589                                1 5.298317 0.0000000 1.6094379
## 590                                1 4.382027 3.5553481 0.6931472
## 591                                2 3.912023 5.4595855 1.6094379
## 592                                2 4.905275 4.7449321 3.3322045
## 593                                1 4.499810 4.6913479 0.0000000
## 594                                1 5.598422 0.0000000 1.6094379
## 595                                1 4.700480 5.7203118 1.0986123
## 596                                1 4.976734 4.6249728 0.0000000
## 597                                1 5.187386 4.4188406 3.4011974
## 598                                1 4.007333 2.9444390 0.0000000
## 599                                1 4.700480 4.1108739 0.6931472
## 600                                1 5.783825 4.4886364 1.6094379
## 601                                3 4.317488 4.1743873 3.4011974
## 602                                1 5.703782 3.6888795 0.0000000
## 603                                2 4.867534 4.3820266 3.4011974
## 604                                1 5.247024 4.9126549 3.4011974
## 605                                1 5.298317 4.6051702 1.0986123
## 606                                3 5.192957 4.8283137 0.6931472
## 607                                1 5.857933 3.6888795 1.6094379
## 608                                4 5.273000 4.9344739 3.4011974
## 609                                1 5.703782 0.6931472 1.9459101
## 610                                1 4.317488 3.8918203 3.3322045
## 611                                1 4.605170 2.0794415 1.6094379
## 612                                1 4.442651 4.8202816 1.6094379
## 613                                1 4.382027 1.6094379 3.0445224
## 614                                1 4.007333 4.9904326 0.0000000
## 615                               11 6.082219 3.7612001 0.0000000
## 616                                1 4.700480 2.0794415 1.7917595
## 617                                1 5.298317 3.6109179 0.6931472
## 618                               11 5.631212 4.7874917 0.0000000
## 619                                1 4.919981 3.1780538 0.0000000
## 620                                1 5.634790 1.6094379 1.0986123
## 621                                1 5.293305 5.4889377 3.4011974
## 622                                1 4.262680 5.4337220 1.3862944
## 623                                2 3.737670 4.6821312 0.6931472
## 624                                1 5.192957 5.1984970 0.6931472
## 625                                1 5.420535 3.5263605 1.6094379
## 626                                1 4.442651 1.6094379 1.0986123
## 627                                1 4.905275 1.6094379 0.0000000
## 628                                2 4.369448 4.0943446 1.3862944
## 629                                1 5.036953 5.4722707 0.0000000
## 630                               28 5.293305 3.5263605 1.0986123
## 631                                4 6.551080 4.8751973 1.0986123
## 632                                1 5.505332 1.7917595 1.3862944
## 633                                1 4.828314 1.3862944 4.0943446
## 634                                4 4.605170 1.9459101 0.0000000
## 635                                1 5.686975 4.8283137 1.6094379
## 636                                1 4.779123 3.8918203 0.0000000
## 637                                2 4.828314 2.3978953 0.0000000
## 638                                1 6.745236 4.6728288 1.0986123
## 639                                1 4.859812 5.4847969 0.6931472
## 640                                1 4.941642 5.1704840 0.0000000
## 641                                2 4.744932 5.0172798 1.3862944
## 642                                2 5.298317 3.8918203 1.0986123
## 643                                1 4.564348 2.5649494 4.7874917
## 644                               28 5.293305 3.4965076 1.0986123
## 645                               28 5.293305 3.1780538 1.0986123
## 646                               28 5.293305 4.0775374 1.0986123
## 647                                1 4.234107 0.6931472 0.0000000
## 648                                1 5.220356 2.7725887 0.6931472
## 649                                1 4.394449 4.2766661 0.6931472
## 650                               28 5.293305 3.1780538 1.0986123
## 651                               28 5.293305 3.1354942 1.0986123
## 652                               28 5.293305 3.7612001 1.0986123
## 653                               28 5.293305 3.4011974 1.0986123
## 654                               28 5.293305 3.6635616 1.0986123
## 655                               28 5.855072 2.0794415 1.0986123
## 656                               28 5.517453 1.0986123 1.0986123
## 657                               28 5.700444 1.7917595 1.0986123
## 658                               28 5.187386 1.3862944 1.0986123
## 659                                3 3.988984 4.0253517 1.6094379
## 660                               28 6.395262 1.9459101 1.0986123
## 661                                1 4.700480 0.6931472 0.0000000
## 662                                1 5.393628 5.1817836 0.6931472
## 663                                1 4.488636 3.4011974 3.4011974
## 664                                1 5.135798 5.2470241 0.6931472
## 665                                2 6.204558 3.2188758 1.9459101
## 666                                2 4.382027 4.3944492 2.3025851
## 667                                1 6.633318 1.9459101 0.6931472
## 668                                1 4.584967 5.3752784 1.3862944
## 669                                1 4.828314 3.4339872 3.4011974
## 670                                2 3.871201 3.9702919 4.4998097
## 671                                2 4.158883 5.5093883 1.0986123
## 672                                1 5.036953 5.4510385 1.0986123
## 673                                1 4.934474 4.9052748 1.0986123
## 674                                1 4.317488 2.9957323 1.3862944
## 675                                1 5.783825 3.8286414 1.3862944
## 676                                1 5.273000 2.3025851 5.8998974
## 677                                1 4.060443 4.9628446 0.0000000
## 678                                4 5.521461 3.0445224 0.6931472
## 679                                4 4.828314 2.0794415 0.6931472
## 680                                2 4.248495 1.3862944 1.9459101
## 681                                2 5.241747 5.7493930 0.6931472
## 682                                1 4.867534 2.8903718 1.0986123
## 683                                1 4.976734 2.3978953 1.9459101
## 684                                1 4.615121 3.9318256 1.9459101
## 685                                1 4.553877 2.9957323 1.6094379
## 686                                1 5.926926 2.0794415 1.9459101
## 687                                1 5.030438 4.0775374 3.4339872
## 688                                1 4.521789 3.9889840 1.3862944
## 689                                1 4.382027 2.3025851 1.6094379
## 690                                4 5.703782 5.0304379 1.3862944
## 691                                1 4.976734 4.7004804 1.0986123
## 692                                2 4.477337 4.2341065 0.6931472
## 693                                1 5.043425 0.0000000 0.0000000
## 694                                1 5.220356 3.1780538 5.1929569
## 695                                2 4.290459 4.5538769 0.6931472
## 696                                1 5.416100 4.8598124 0.6931472
## 697                                2 4.442651 5.1416636 1.9459101
## 698                                1 4.595120 2.9957323 0.6931472
## 699                                2 3.871201 2.8332133 4.4998097
## 700                                1 5.298317 2.0794415 1.6094379
## 701                                1 6.184149 2.3978953 1.9459101
## 702                                1 5.736572 1.6094379 1.6094379
## 703                                5 4.691348 3.5835189 3.4011974
## 704                                5 5.117994 2.7725887 3.4011974
## 705                                1 4.990433 1.6094379 2.7080502
## 706                                1 5.273000 4.2195077 1.3862944
## 707                                1 5.293305 4.4886364 3.3322045
## 708                                1 4.174387 2.3025851 3.4011974
## 709                                1 4.007333 3.6375862 0.0000000
## 710                                1 3.912023 2.7080502 0.6931472
## 711                                1 4.094345 2.9957323 0.6931472
## 712                                2 4.595120 3.2188758 1.0986123
## 713                                1 4.867534 3.5553481 0.6931472
## 714                                1 5.669881 0.0000000 3.4011974
## 715                                1 5.857933 4.1588831 1.0986123
## 716                                1 3.912023 3.2580965 1.0986123
## 717                                1 4.564348 5.4971682 0.6931472
## 718                                3 3.806662 3.0445224 2.7080502
## 719                                2 4.442651 5.5984220 0.6931472
## 720                                3 3.526361 2.7725887 2.3025851
## 721                                1 5.521461 3.1780538 1.0986123
## 722                                2 5.247024 3.4011974 0.0000000
## 723                                2 4.317488 1.6094379 0.6931472
## 724                                1 4.532599 4.7449321 1.3862944
## 725                                2 4.094345 2.1972246 1.6094379
## 726                                2 4.174387 3.8066625 1.6094379
## 727                                1 4.828314 2.9444390 5.8998974
## 728                                1 5.703782 1.6094379 1.0986123
## 729                                1 5.010635 5.3132060 0.6931472
## 730                                1 4.025352 2.9957323 4.8040210
## 731                                1 5.700444 3.8918203 1.0986123
## 732                                1 4.094345 1.7917595 1.3862944
## 733                                1 4.477337 1.9459101 1.6094379
## 734                                2 4.094345 3.5553481 0.6931472
## 735                                4 7.170120 3.3322045 1.6094379
## 736                                1 4.595120 3.9889840 0.6931472
## 737                                2 4.700480 4.7449321 1.0986123
## 738                                1 4.905275 1.7917595 1.6094379
## 739                                1 4.700480 0.0000000 2.7080502
## 740                                1 5.105945 5.3181200 1.0986123
## 741                                1 4.844187 0.0000000 5.1929569
## 742                                1 5.996452 4.4886364 1.0986123
## 743                                2 4.442651 4.8675345 1.7917595
## 744                                3 4.317488 2.7080502 1.9459101
## 745                                1 4.934474 3.9512437 3.4011974
## 746                                1 4.248495 4.0604430 1.7917595
## 747                                1 3.912023 5.3375381 1.0986123
## 748                                1 3.401197 1.0986123 1.6094379
## 749                                1 5.521461 1.9459101 3.4011974
## 750                                1 4.158883 0.0000000 0.0000000
## 751                                1 5.703782 0.6931472 1.0986123
## 752                                1 6.684612 4.8040210 1.3862944
## 753                                2 4.605170 4.1431347 1.0986123
## 754                                1 5.521461 3.2580965 1.6094379
## 755                                1 5.298317 0.0000000 3.2958369
## 756                                1 4.941642 2.6390573 1.6094379
## 757                                1 4.867534 4.6728288 0.0000000
## 758                                1 4.499810 1.0986123 3.4011974
## 759                                1 4.499810 4.6728288 1.0986123
## 760                                1 4.574711 3.3672958 1.0986123
## 761                                1 4.510860 4.2341065 1.7917595
## 762                                1 4.828314 5.4467374 1.0986123
## 763                                2 5.192957 3.1780538 1.9459101
## 764                                2 4.605170 1.6094379 2.9444390
## 765                                1 5.164786 2.3025851 1.0986123
## 766                                2 4.174387 3.5835189 1.3862944
## 767                                1 5.480639 4.5432948 1.6094379
## 768                                1 5.703782 0.0000000 1.7917595
## 769                                1 5.953243 4.1431347 0.0000000
## 770                                1 3.850148 1.6094379 2.7080502
## 771                                1 4.700480 5.4722707 1.0986123
## 772                                1 4.317488 4.6151205 0.6931472
## 773                                3 4.605170 3.0445224 1.0986123
## 774                                1 5.105945 4.2766661 0.6931472
## 775                                1 5.703782 3.6888795 0.6931472
## 776                                1 4.941642 4.6347290 1.0986123
## 777                                2 4.787492 4.1896547 1.7917595
## 778                                1 5.164786 3.5553481 1.0986123
## 779                                1 5.616771 4.7957905 3.4339872
## 780                                1 5.187386 2.7080502 2.0794415
## 781                                1 5.241747 2.5649494 0.6931472
## 782                                1 5.389072 4.8598124 0.6931472
## 783                                1 6.109248 5.0562458 2.9957323
## 784                                1 5.517453 2.0794415 1.6094379
## 785                                1 4.174387 1.6094379 0.6931472
## 786                                1 5.521461 3.8286414 1.3862944
## 787                                1 4.934474 3.6109179 3.4011974
## 788                                1 5.342334 2.6390573 1.9459101
## 789                                1 4.787492 3.6109179 1.6094379
## 790                                1 4.248495 0.0000000 1.6094379
## 791                                1 4.499810 5.3423343 1.0986123
## 792                                1 5.293305 1.3862944 1.0986123
## 793                                2 3.912023 2.8332133 4.0943446
## 794                                2 5.056246 3.9889840 1.3862944
## 795                               28 5.293305 3.7612001 1.0986123
## 796                                1 5.257495 1.9459101 1.0986123
## 797                               28 5.293305 4.3174881 1.0986123
## 798                                1 5.010635 4.4773368 0.0000000
## 799                               28 5.293305 4.2904594 1.0986123
## 800                               28 5.293305 4.4886364 1.0986123
## 801                               28 5.293305 3.1354942 1.0986123
## 802                                1 4.653960 2.3978953 1.0986123
## 803                                6 4.905275 4.4308168 3.3322045
## 804                               28 5.293305 3.9889840 1.0986123
## 805                                1 4.828314 2.8332133 1.0986123
## 806                                2 4.094345 0.0000000 1.9459101
## 807                                1 4.442651 4.2904594 0.0000000
## 808                                1 5.703782 3.5835189 1.0986123
## 809                                2 4.317488 4.5849675 0.6931472
## 810                                2 4.007333 4.1431347 0.0000000
## 811                                1 3.784190 0.6931472 1.6094379
## 812                                3 4.007333 2.8903718 1.6094379
## 813                                3 3.401197 3.1780538 1.0986123
## 814                                1 3.555348 0.0000000 1.0986123
## 815                                1 4.248495 0.6931472 0.0000000
## 816                                1 4.867534 3.1354942 2.6390573
## 817                                4 3.951244 4.5325995 0.6931472
## 818                                1 5.521461 5.0238805 1.6094379
## 819                                2 4.605170 4.7791235 0.0000000
## 820                                1 4.867534 2.1972246 1.3862944
## 821                                1 4.941642 3.7841896 0.6931472
## 822                                1 4.317488 5.0625950 0.6931472
## 823                                1 5.010635 2.4849066 1.9459101
## 824                                1 4.499810 3.9318256 1.0986123
## 825                                1 5.010635 2.3978953 0.6931472
## 826                                2 5.192957 5.4638318 1.0986123
## 827                                1 4.905275 2.7725887 1.0986123
## 828                                1 4.174387 4.8121844 1.6094379
## 829                                1 4.595120 2.6390573 1.0986123
## 830                                1 5.003946 4.1743873 2.6390573
## 831                                1 4.077537 3.9120230 0.0000000
## 832                                3 4.317488 3.4965076 1.0986123
## 833                                3 4.317488 3.4011974 1.0986123
## 834                                1 4.317488 2.5649494 1.0986123
## 835                                5 4.691348 2.8903718 3.4011974
## 836                                1 5.416100 0.0000000 1.3862944
## 837                                1 4.454347 5.3752784 1.0986123
## 838                                1 3.951244 4.5849675 0.6931472
## 839                                1 4.605170 4.1108739 0.6931472
## 840                                9 4.595120 2.5649494 3.4011974
## 841                                1 4.488636 4.9126549 1.0986123
## 842                                2 4.905275 3.6635616 0.6931472
## 843                                1 5.293305 4.1743873 2.6390573
## 844                                1 4.488636 4.1271344 1.0986123
## 845                                1 4.700480 3.8501476 1.0986123
## 846                                1 4.787492 3.7376696 0.6931472
## 847                                2 4.077537 5.3327188 1.0986123
## 848                                2 3.891820 4.2766661 1.3862944
## 849                                1 4.369448 3.0910425 2.6390573
## 850                                1 4.905275 3.2188758 3.4011974
## 851                                1 5.220356 5.3706380 0.6931472
## 852                                1 5.416100 3.2580965 1.3862944
## 853                                1 5.501258 2.8903718 1.6094379
## 854                                1 4.744932 2.8903718 1.0986123
## 855                                1 5.783825 5.7683210 0.6931472
## 856                                2 4.553877 5.0751738 0.6931472
## 857                                1 4.787492 4.3567088 0.6931472
## 858                                1 6.212606 4.1588831 3.4011974
## 859                                2 4.317488 5.3890717 0.6931472
## 860                                1 4.691348 4.1896547 0.0000000
## 861                                1 5.075174 3.2188758 1.0986123
## 862                                2 5.389072 4.6249728 1.3862944
## 863                                1 5.068904 3.4657359 0.6931472
## 864                                6 5.192957 2.7080502 1.0986123
## 865                                1 5.010635 0.0000000 1.6094379
## 866                                1 4.663439 2.4849066 1.0986123
## 867                                1 5.700444 2.9444390 2.3025851
## 868                                1 5.187386 5.6937321 1.0986123
## 869                                1 5.105945 2.4849066 1.0986123
## 870                                1 6.214608 2.1972246 1.3862944
## 871                                1 5.521461 2.1972246 2.7080502
## 872                                2 4.465908 3.8286414 1.9459101
## 873                                2 4.369448 3.7376696 1.3862944
## 874                                3 4.317488 4.7706846 0.6931472
## 875                                1 5.298317 3.9702919 3.4011974
## 876                                1 4.382027 2.7080502 0.0000000
## 877                                4 4.744932 4.1588831 1.0986123
## 878                                4 4.744932 3.9318256 1.0986123
## 879                                4 4.787492 4.3694479 1.0986123
## 880                                1 4.828314 5.3082677 1.0986123
## 881                                1 5.958425 3.1354942 0.0000000
## 882                                2 4.553877 4.1271344 1.7917595
## 883                                1 4.595120 3.5835189 0.6931472
## 884                                2 4.795791 2.7725887 0.0000000
## 885                                1 5.857933 3.1780538 1.3862944
## 886                                2 4.317488 4.3438054 0.6931472
## 887                                2 4.553877 4.7004804 1.6094379
## 888                                1 4.488636 4.0253517 0.0000000
## 889                                1 5.273000 1.9459101 0.0000000
## 890                                1 4.248495 2.9444390 2.8903718
## 891                                1 4.605170 1.9459101 1.0986123
## 892                                1 4.941642 3.9702919 0.0000000
## 893                                2 5.241747 5.5797298 1.0986123
## 894                                1 5.181784 2.0794415 3.4011974
## 895                                1 4.976734 3.8286414 2.6390573
## 896                                1 4.828314 1.7917595 1.6094379
## 897                                1 5.579730 4.3174881 1.3862944
## 898                                3 4.343805 2.3978953 1.6094379
## 899                                9 4.094345 1.6094379 1.0986123
## 900                                1 4.859812 4.8828019 1.0986123
## 901                                1 5.293305 3.7135721 1.7917595
## 902                                1 4.521789 3.5263605 1.9459101
## 903                                1 5.220356 3.5263605 1.0986123
## 904                                1 4.700480 3.2958369 1.9459101
## 905                                1 4.174387 3.4011974 1.3862944
## 906                                2 4.905275 5.3659760 1.0986123
## 907                                1 4.744932 2.4849066 3.4011974
## 908                                4 5.164786 1.7917595 0.6931472
## 909                                1 4.276666 5.0498560 1.0986123
## 910                                1 4.382027 3.4011974 0.6931472
## 911                                1 4.828314 0.0000000 1.6094379
## 912                                1 4.787492 1.0986123 1.6094379
## 913                                3 4.543295 5.6058021 0.6931472
## 914                                1 4.025352 4.1431347 1.0986123
## 915                                1 6.308098 4.0604430 3.4011974
## 916                                1 5.247024 1.6094379 0.6931472
## 917                                2 4.859812 4.1431347 1.0986123
## 918                                2 4.442651 5.5909870 1.6094379
## 919                                1 2.995732 4.3820266 1.0986123
## 920                                1 4.976734 3.0910425 1.0986123
## 921                                1 5.298317 2.5649494 1.9459101
## 922                                2 4.828314 3.1354942 1.3862944
## 923                                1 3.912023 1.0986123 3.4011974
## 924                                3 5.075174 2.3025851 1.0986123
## 925                                3 5.192957 2.6390573 1.0986123
## 926                                1 4.605170 2.9957323 0.0000000
## 927                                1 4.248495 0.6931472 1.6094379
## 928                                1 4.787492 3.8501476 0.6931472
## 929                                1 4.700480 1.7917595 0.6931472
## 930                                1 4.653960 4.5325995 1.9459101
## 931                                1 5.521461 4.7535902 1.0986123
## 932                                1 4.304065 2.7080502 5.4806389
## 933                                4 5.105945 4.2484952 0.6931472
## 934                                1 4.595120 1.3862944 1.0986123
## 935                                4 4.828314 4.8520303 3.4011974
## 936                                2 4.317488 4.0775374 0.0000000
## 937                                2 3.806662 2.0794415 0.0000000
## 938                                1 5.068904 4.6634391 0.6931472
## 939                                4 3.806662 2.7080502 2.7080502
## 940                                1 4.644391 4.8903491 0.6931472
## 941                                1 5.416100 3.2958369 1.3862944
## 942                                1 4.605170 4.1108739 1.6094379
## 943                                2 4.499810 0.6931472 0.6931472
## 944                                2 4.317488 2.7725887 0.0000000
## 945                                1 4.905275 3.6375862 1.6094379
## 946                                1 4.828314 3.2188758 0.0000000
## 947                                1 5.416100 4.5325995 1.0986123
## 948                                1 4.442651 1.7917595 1.0986123
## 949                                1 5.298317 3.4011974 1.9459101
## 950                                1 5.521461 2.8332133 1.0986123
## 951                                1 4.499810 4.2046926 2.3025851
## 952                                1 4.867534 3.9702919 3.4011974
## 953                                1 4.499810 3.4657359 3.4011974
## 954                                2 5.697093 4.8751973 3.4011974
## 955                                1 5.703782 2.9444390 1.3862944
## 956                                3 4.828314 4.3040651 1.0986123
## 957                                2 4.976734 5.1059455 1.0986123
## 958                                1 4.990433 2.7725887 0.6931472
## 959                                3 4.812184 5.5947114 1.0986123
## 960                                1 4.477337 5.4930614 1.0986123
## 961                                1 5.370638 4.0775374 0.6931472
## 962                                1 5.416100 4.8978398 1.0986123
## 963                                1 5.594711 4.3944492 3.3322045
## 964                                1 4.976734 1.9459101 1.0986123
## 965                                8 4.317488 4.7184989 1.0986123
## 966                                1 5.433722 4.5217886 0.6931472
## 967                                2 5.703782 3.1354942 3.3672958
## 968                                3 4.605170 4.2046926 1.0986123
## 969                                1 4.317488 2.0794415 0.6931472
## 970                                2 5.416100 5.4971682 0.6931472
## 971                                2 4.787492 4.1271344 1.7917595
## 972                                3 5.075174 4.8283137 1.6094379
## 973                                2 4.828314 4.0604430 3.4011974
## 974                                1 4.553877 2.1972246 1.6094379
## 975                                1 4.779123 4.9199809 1.0986123
## 976                                1 5.616771 2.7725887 0.6931472
## 977                                1 5.075174 3.5835189 0.0000000
## 978                                4 6.214608 3.9889840 0.0000000
## 979                                1 5.164786 0.0000000 2.6390573
## 980                                2 4.465908 3.6635616 1.7917595
## 981                                2 5.075174 4.9767337 0.0000000
## 982                                1 4.828314 3.3322045 1.0986123
## 983                                1 4.499810 5.3278762 0.6931472
## 984                                1 5.298317 1.3862944 1.9459101
## 985                                2 5.521461 3.6109179 2.7080502
## 986                                1 4.595120 3.2958369 3.4011974
## 987                                1 5.783825 2.8903718 3.4011974
## 988                                1 4.595120 4.8978398 0.0000000
## 989                                1 5.783825 5.2832037 0.6931472
## 990                                1 4.859812 1.6094379 1.9459101
## 991                                1 4.867534 1.6094379 3.3322045
## 992                                1 5.247024 2.0794415 1.3862944
## 993                                2 4.007333 4.1271344 0.6931472
## 994                                1 4.094345 2.5649494 0.6931472
## 995                                1 5.521461 2.0794415 0.0000000
## 996                                2 5.616771 3.9120230 1.0986123
## 997                                1 3.912023 4.2341065 5.1929569
## 998                                1 4.828314 3.7135721 1.3862944
## 999                                1 5.010635 4.4886364 2.9957323
## 1000                               1 4.248495 3.6888795 1.3862944
## 1001                               1 4.927254 4.6634391 1.0986123
## 1002                               1 5.579730 3.4965076 1.3862944
## 1003                               1 4.976734 0.6931472 1.6094379
## 1004                               1 5.017280 2.9444390 4.4773368
## 1005                               1 5.337538 4.6051702 1.7917595
## 1006                               1 5.298317 2.7725887 1.0986123
## 1007                               1 4.700480 4.1588831 0.6931472
## 1008                               2 4.060443 2.8332133 0.0000000
## 1009                               1 4.007333 1.9459101 0.6931472
## 1010                               1 4.653960 2.7080502 4.7449321
## 1011                               1 5.857933 1.3862944 1.6094379
## 1012                               1 5.010635 4.4659081 1.0986123
## 1013                               1 4.007333 2.3025851 5.0106353
## 1014                               1 4.343805 5.6664267 1.0986123
## 1015                               1 4.828314 2.3025851 2.1972246
## 1016                               1 5.978886 3.6635616 2.6390573
## 1017                               2 5.241747 1.9459101 1.9459101
## 1018                               1 3.891820 3.1354942 0.0000000
## 1019                               1 4.499810 3.0910425 1.3862944
## 1020                               1 4.605170 0.0000000 0.0000000
## 1021                               3 5.700444 1.6094379 0.6931472
## 1022                               3 4.317488 3.4011974 1.6094379
## 1023                               3 4.234107 4.0073332 1.9459101
## 1024                               3 4.499810 5.0434251 0.0000000
## 1025                               1 4.543295 4.5538769 0.0000000
## 1026                               1 4.382027 4.7706846 0.6931472
## 1027                               1 4.605170 4.4067192 1.6094379
## 1028                               3 3.663562 4.6539604 1.6094379
## 1029                               1 5.521461 4.2904594 1.0986123
## 1030                               2 4.007333 3.3322045 1.9459101
## 1031                               1 5.298317 1.0986123 0.0000000
## 1032                               1 4.955827 4.7874917 1.0986123
## 1033                               3 4.248495 5.8260001 0.6931472
## 1034                               1 5.560682 1.9459101 0.6931472
## 1035                               1 5.416100 2.5649494 1.3862944
## 1036                               3 4.077537 1.7917595 3.0445224
## 1037                               1 4.174387 1.0986123 0.0000000
## 1038                               1 4.595120 2.3978953 2.9957323
## 1039                               1 5.476464 4.2046926 0.6931472
## 1040                               1 3.912023 4.8121844 0.6931472
## 1041                               3 4.174387 4.6913479 1.3862944
## 1042                               1 4.934474 3.1354942 1.3862944
## 1043                               2 5.159055 5.5947114 0.6931472
## 1044                               1 5.752573 1.9459101 1.0986123
## 1045                               1 4.317488 3.5835189 1.0986123
## 1046                               1 5.347108 5.1817836 0.0000000
## 1047                               2 4.007333 4.8828019 1.3862944
## 1048                               1 5.433722 2.4849066 1.0986123
## 1049                               1 5.010635 3.1354942 0.6931472
## 1050                               1 4.859812 3.8501476 0.6931472
## 1051                               1 4.605170 2.0794415 2.0794415
## 1052                               1 5.298317 2.8332133 1.0986123
## 1053                               1 4.488636 1.3862944 1.6094379
## 1054                               1 5.521461 2.9444390 4.4998097
## 1055                               3 4.174387 0.6931472 1.9459101
## 1056                               3 4.219508 3.5553481 0.6931472
## 1057                               2 5.459586 4.6821312 1.0986123
## 1058                               1 4.605170 5.2040067 1.0986123
## 1059                               1 5.739793 3.4339872 1.0986123
## 1060                               1 3.663562 6.1180972 0.0000000
## 1061                               1 4.605170 5.2933048 0.6931472
## 1062                               1 5.347108 5.4380793 0.0000000
## 1063                               4 4.007333 4.6151205 1.3862944
## 1064                               1 4.174387 2.0794415 0.6931472
## 1065                               1 5.105945 5.0369526 3.4011974
## 1066                               1 4.488636 4.2341065 3.3322045
## 1067                               1 6.214608 1.0986123 2.3025851
## 1068                               1 4.976734 1.0986123 2.6390573
## 1069                               1 4.700480 2.4849066 1.3862944
## 1070                               1 5.192957 2.5649494 1.6094379
## 1071                               1 4.744932 2.3025851 0.6931472
## 1072                               1 4.406719 1.6094379 2.7080502
## 1073                               2 4.248495 4.9698133 0.0000000
## 1074                               1 5.043425 2.3025851 1.6094379
## 1075                               1 4.605170 2.8332133 0.6931472
## 1076                               6 4.488636 4.0430513 3.4011974
## 1077                               6 4.488636 4.2484952 3.4011974
## 1078                               6 4.595120 4.1271344 3.4011974
## 1079                               1 5.043425 2.8332133 1.7917595
## 1080                               2 4.442651 6.0844994 0.0000000
## 1081                               1 4.382027 3.8712010 1.3862944
## 1082                               1 4.905275 4.8978398 1.0986123
## 1083                               1 5.010635 0.6931472 1.7917595
## 1084                               1 5.940171 2.7725887 1.0986123
## 1085                               1 6.109248 3.4339872 0.6931472
## 1086                               1 4.976734 3.5835189 3.4011974
## 1087                               1 4.382027 0.0000000 1.0986123
## 1088                               2 5.416100 5.8230459 0.6931472
## 1089                               1 4.595120 4.7621739 1.0986123
## 1090                               1 4.828314 5.5645204 0.0000000
## 1091                               7 4.382027 3.4657359 3.4011974
## 1092                               2 4.605170 4.7184989 0.6931472
## 1093                               4 4.007333 3.0910425 0.6931472
## 1094                               1 5.793014 5.7651911 0.6931472
## 1095                               1 4.955827 4.2341065 1.9459101
## 1096                               1 5.857933 2.3025851 1.3862944
## 1097                               1 5.703782 3.1780538 0.6931472
## 1098                               1 4.653960 1.0986123 3.4011974
## 1099                               2 4.828314 2.8332133 3.4339872
## 1100                               2 5.416100 2.5649494 1.9459101
## 1101                               1 4.521789 4.0604430 0.6931472
## 1102                               1 5.220356 4.1271344 0.6931472
## 1103                               1 5.420535 5.3132060 1.0986123
## 1104                               1 3.912023 3.4965076 0.6931472
## 1105                               2 4.382027 3.8501476 1.0986123
## 1106                               1 4.595120 3.4011974 2.6390573
## 1107                               1 4.219508 0.6931472 1.0986123
## 1108                               1 4.624973 4.7957905 0.6931472
## 1109                               1 5.393628 3.2958369 1.0986123
## 1110                               1 5.293305 3.1780538 1.0986123
## 1111                               1 5.105945 3.0910425 1.6094379
## 1112                               1 5.010635 5.0875963 0.6931472
## 1113                               2 5.953243 4.1896547 0.0000000
## 1114                               1 6.212606 4.1431347 0.6931472
## 1115                               2 4.442651 5.3890717 0.0000000
## 1116                               2 5.075174 0.6931472 1.3862944
## 1117                               1 5.517453 2.4849066 1.0986123
## 1118                               1 4.382027 3.5553481 0.6931472
## 1119                               1 4.787492 4.8202816 0.0000000
## 1120                               1 3.555348 0.6931472 1.9459101
## 1121                               1 5.129899 4.1431347 1.3862944
## 1122                               1 5.393628 5.0875963 1.3862944
## 1123                               2 4.442651 4.6347290 1.0986123
## 1124                               1 4.369448 5.2203558 3.4011974
## 1125                               1 4.499810 5.3890717 1.3862944
## 1126                               1 4.595120 5.6347896 0.0000000
## 1127                               2 3.912023 4.1108739 0.0000000
## 1128                               5 3.828641 5.2149358 0.0000000
## 1129                               1 5.783825 4.7535902 1.0986123
## 1130                               1 4.219508 2.3978953 0.6931472
## 1131                               1 5.288267 2.1972246 1.0986123
## 1132                               1 4.605170 1.3862944 1.6094379
## 1133                               1 5.164786 2.7080502 0.6931472
## 1134                               1 4.867534 3.0910425 1.3862944
## 1135                               1 5.192957 2.8903718 1.0986123
## 1136                               1 5.342334 4.0253517 1.0986123
## 1137                               1 5.010635 0.6931472 1.3862944
## 1138                               1 4.644391 4.0430513 1.0986123
## 1139                               1 5.164786 2.5649494 1.3862944
## 1140                               1 4.382027 0.0000000 0.0000000
## 1141                               1 4.219508 3.6109179 0.6931472
## 1142                               2 4.276666 6.1114673 1.6094379
## 1143                               8 4.672829 3.1780538 3.4011974
## 1144                               1 5.010635 2.9444390 1.9459101
## 1145                               2 3.806662 5.2470241 1.0986123
## 1146                               4 3.891820 3.8286414 0.6931472
## 1147                               1 5.855072 5.1298987 0.0000000
## 1148                               1 5.220356 5.1059455 0.6931472
## 1149                               1 4.976734 0.6931472 1.0986123
## 1150                               1 4.564348 0.0000000 1.0986123
## 1151                               1 4.787492 1.0986123 1.6094379
## 1152                               1 5.075174 2.7080502 0.0000000
## 1153                               1 6.684612 4.0943446 1.0986123
## 1154                               1 5.855072 5.7683210 0.6931472
## 1155                               1 5.857933 5.2040067 0.6931472
## 1156                               1 4.828314 0.0000000 3.4011974
## 1157                               1 5.857933 4.8978398 0.6931472
## 1158                               2 5.010635 2.3025851 2.3025851
## 1159                               1 5.298317 4.0943446 0.0000000
## 1160                               1 4.595120 1.6094379 3.4011974
## 1161                               1 4.867534 2.1972246 1.6094379
## 1162                               1 5.010635 0.0000000 1.0986123
## 1163                               1 4.499810 3.4965076 2.3025851
## 1164                               1 4.553877 2.3025851 0.0000000
## 1165                               1 4.248495 1.0986123 3.4011974
## 1166                               2 4.406719 2.3025851 1.0986123
## 1167                               3 5.521461 4.1271344 3.4011974
## 1168                               1 4.499810 5.5834963 1.3862944
## 1169                               2 4.317488 5.5254529 0.6931472
## 1170                               1 5.075174 1.0986123 2.6390573
## 1171                               1 4.744932 2.0794415 1.9459101
## 1172                               1 5.010635 1.6094379 1.3862944
## 1173                               1 4.488636 5.0751738 1.3862944
## 1174                               1 4.234107 1.6094379 1.6094379
## 1175                               2 5.135798 5.2094862 0.6931472
## 1176                               1 5.926926 2.9444390 1.6094379
## 1177                               1 4.770685 4.9487599 1.0986123
## 1178                               1 4.905275 3.7376696 1.7917595
## 1179                               1 5.521461 4.7791235 1.0986123
## 1180                               1 5.298317 2.9957323 1.9459101
## 1181                               1 5.010635 1.6094379 1.6094379
## 1182                               1 3.912023 2.7725887 0.6931472
## 1183                               1 4.605170 3.1780538 0.6931472
## 1184                               1 5.579730 3.2580965 1.0986123
## 1185                               1 4.499810 1.0986123 3.4011974
## 1186                               2 3.583519 1.6094379 2.3025851
## 1187                               2 5.521461 0.6931472 1.3862944
## 1188                               1 5.393628 5.2678582 1.0986123
## 1189                               1 4.532599 4.4773368 2.6390573
## 1190                               1 5.616771 0.6931472 1.6094379
## 1191                               1 4.691348 5.7170277 3.4011974
## 1192                               1 6.109248 2.3978953 0.6931472
## 1193                               1 5.105945 2.9444390 3.4011974
## 1194                               1 4.382027 3.1354942 1.9459101
## 1195                               3 5.686975 4.6347290 1.6094379
## 1196                               1 5.634790 4.4067192 1.9459101
## 1197                               1 5.703782 4.5217886 3.4011974
## 1198                               6 4.595120 4.1896547 3.4011974
## 1199                               2 5.164786 2.8903718 1.0986123
## 1200                               1 5.416100 5.0304379 1.3862944
## 1201                               1 5.438079 1.7917595 1.7917595
## 1202                               1 4.499810 3.7612001 1.9459101
## 1203                               1 4.624973 3.5835189 1.0986123
## 1204                               1 4.077537 2.9444390 2.3025851
## 1205                               1 5.273000 5.0751738 0.6931472
## 1206                               2 5.010635 4.3040651 1.0986123
## 1207                               2 5.135798 3.8501476 0.0000000
## 1208                               1 5.379897 3.7612001 0.6931472
## 1209                               2 5.220356 4.6249728 0.0000000
## 1210                               1 4.060443 2.8903718 1.7917595
## 1211                               2 5.241747 3.4965076 1.3862944
## 1212                               6 4.477337 4.0943446 3.4011974
## 1213                               2 5.273000 3.0910425 1.0986123
## 1214                               1 4.700480 4.6728288 1.6094379
## 1215                               1 4.369448 4.4659081 1.3862944
## 1216                               1 4.700480 2.7725887 2.3025851
## 1217                               1 5.298317 0.6931472 1.0986123
## 1218                               3 4.234107 2.9444390 1.3862944
## 1219                               3 4.007333 6.1612073 0.0000000
## 1220                               1 4.905275 1.6094379 1.3862944
## 1221                               1 6.214608 4.1431347 0.6931472
## 1222                               1 4.905275 3.3322045 1.0986123
## 1223                               1 4.499810 1.6094379 0.6931472
## 1224                               1 5.075174 2.7725887 1.3862944
## 1225                               1 4.174387 1.7917595 2.9957323
## 1226                               1 5.347108 3.2188758 1.0986123
## 1227                               1 5.988961 2.7080502 1.0986123
## 1228                               1 5.703782 3.8066625 0.0000000
## 1229                               3 5.220356 5.3706380 0.0000000
## 1230                               2 5.393628 3.4965076 1.0986123
## 1231                               1 4.795791 3.8286414 0.6931472
## 1232                               1 4.787492 3.2188758 2.3025851
## 1233                               1 5.023881 3.1354942 0.6931472
## 1234                               1 5.521461 4.0430513 0.6931472
## 1235                               1 4.595120 4.3820266 1.7917595
## 1236                               1 4.644391 3.0910425 2.3978953
## 1237                               1 4.787492 3.6888795 1.6094379
## 1238                               1 5.686975 4.4426513 1.0986123
## 1239                               1 4.499810 0.0000000 1.3862944
## 1240                               1 5.283204 3.3672958 2.6390573
## 1241                               1 4.976734 0.0000000 1.6094379
## 1242                               1 4.499810 3.1354942 3.4011974
## 1243                               1 4.828314 3.7376696 0.6931472
## 1244                               1 5.247024 5.2729996 0.0000000
## 1245                               3 4.330733 5.0625950 0.6931472
## 1246                               1 3.912023 0.0000000 0.6931472
## 1247                               1 4.672829 4.7449321 0.0000000
## 1248                               1 4.382027 3.7376696 1.3862944
## 1249                               1 5.010635 1.0986123 1.6094379
## 1250                               1 4.700480 3.4657359 4.4998097
## 1251                               3 5.017280 5.3659760 0.6931472
## 1252                               1 4.867534 2.3978953 0.6931472
## 1253                               1 5.192957 5.3981627 0.6931472
## 1254                               3 4.553877 4.8121844 0.0000000
## 1255                               2 4.369448 4.8828019 0.0000000
## 1256                               8 4.094345 3.7135721 3.4011974
## 1257                               1 4.890349 4.6443909 1.3862944
## 1258                               5 4.787492 2.8903718 3.4011974
## 1259                               1 4.787492 4.9628446 0.6931472
## 1260                               1 6.551080 1.3862944 3.3322045
## 1261                               1 5.105945 3.2188758 1.0986123
## 1262                               1 5.105945 1.3862944 1.3862944
## 1263                               1 3.988984 5.2882670 3.8066625
## 1264                               1 4.605170 1.7917595 1.6094379
## 1265                               1 4.382027 2.3025851 1.9459101
## 1266                               1 4.564348 3.4011974 2.9444390
## 1267                               1 5.068904 1.3862944 0.6931472
## 1268                               1 3.912023 5.3033049 0.6931472
## 1269                               1 4.317488 3.9318256 0.6931472
## 1270                               1 5.043425 4.1431347 3.4011974
## 1271                               1 5.010635 3.3322045 0.6931472
## 1272                               1 4.521789 4.0073332 0.0000000
## 1273                               1 4.317488 0.0000000 1.6094379
## 1274                               1 4.234107 3.1354942 3.6888795
## 1275                               1 4.744932 4.1108739 1.3862944
## 1276                               1 4.787492 1.6094379 4.0943446
## 1277                               1 4.787492 4.2046926 0.6931472
## 1278                               1 5.370638 4.7004804 3.4011974
## 1279                               1 5.273000 5.0751738 0.6931472
## 1280                               2 5.164786 4.6249728 1.0986123
## 1281                               4 4.382027 1.6094379 0.6931472
## 1282                               1 3.871201 0.0000000 1.6094379
## 1283                               1 5.298317 3.5263605 1.9459101
## 1284                               1 5.616771 1.7917595 3.4011974
## 1285                               2 4.276666 4.1108739 0.0000000
## 1286                               1 5.293305 2.3978953 4.0943446
## 1287                               2 5.521461 0.0000000 3.4011974
## 1288                               1 4.317488 3.8286414 1.6094379
## 1289                               1 4.828314 4.8828019 0.0000000
## 1290                               1 5.433722 4.1271344 0.0000000
## 1291                               1 5.164786 2.0794415 2.3025851
## 1292                               1 4.941642 2.7725887 1.0986123
## 1293                               1 3.988984 2.9444390 0.6931472
## 1294                               1 4.317488 2.8332133 0.6931472
## 1295                               1 4.700480 2.4849066 1.9459101
## 1296                               1 5.105945 5.7714411 0.0000000
## 1297                               2 4.007333 5.0751738 1.3862944
## 1298                               2 4.007333 4.9558271 1.3862944
## 1299                               1 5.703782 1.6094379 0.0000000
## 1300                               1 5.616771 4.1108739 1.7917595
## 1301                               1 4.343805 1.6094379 1.0986123
## 1302                               1 4.094345 3.5835189 3.4011974
## 1303                               1 4.859812 4.6913479 0.0000000
## 1304                               1 4.605170 3.3322045 1.0986123
## 1305                               1 4.787492 2.6390573 1.3862944
## 1306                               1 6.214608 5.5214609 0.6931472
## 1307                               1 5.187386 2.4849066 1.3862944
## 1308                               1 5.003946 2.9957323 0.6931472
## 1309                               1 5.192957 3.2958369 2.6390573
## 1310                               3 4.605170 4.2904594 0.6931472
## 1311                               1 5.192957 0.6931472 1.0986123
## 1312                               1 4.852030 3.6375862 1.6094379
## 1313                               1 5.560682 1.6094379 2.6390573
## 1314                               1 4.174387 3.4339872 1.0986123
## 1315                               1 5.298317 2.8332133 0.6931472
## 1316                               1 5.517453 3.5553481 1.0986123
## 1317                               3 5.703782 4.1431347 3.4011974
## 1318                               1 4.787492 5.0039463 1.9459101
## 1319                               1 4.787492 4.6728288 2.9957323
## 1320                               1 4.828314 1.9459101 1.6094379
## 1321                               2 4.595120 3.8712010 1.0986123
## 1322                               1 4.744932 3.9889840 1.0986123
## 1323                               1 5.616771 2.8332133 3.4339872
## 1324                               1 5.288267 4.6347290 0.6931472
## 1325                               1 5.293305 5.4930614 1.0986123
## 1326                               1 4.828314 4.5325995 1.0986123
## 1327                               2 4.382027 3.9889840 0.6931472
## 1328                              52 4.867534 0.6931472 3.4011974
## 1329                               4 3.555348 4.4773368 3.3322045
## 1330                               1 4.499810 2.7080502 3.4011974
## 1331                               2 5.521461 3.2188758 1.0986123
## 1332                               1 5.298317 2.3978953 1.3862944
## 1333                               2 4.158883 2.8332133 3.4011974
## 1334                               2 4.174387 1.6094379 1.0986123
## 1335                               1 4.499810 3.3322045 0.6931472
## 1336                               1 3.912023 2.0794415 3.4011974
## 1337                               2 4.912655 2.7080502 0.6931472
## 1338                               1 5.991465 0.6931472 1.0986123
## 1339                               1 4.828314 3.6888795 1.3862944
## 1340                               1 5.105945 4.0430513 1.9459101
## 1341                               1 4.653960 1.7917595 2.6390573
## 1342                               1 4.997212 4.0430513 1.3862944
## 1343                               1 4.787492 3.0910425 1.0986123
## 1344                               1 4.595120 1.7917595 2.0794415
## 1345                               1 5.164786 2.8332133 0.0000000
## 1346                               1 4.442651 2.6390573 0.6931472
## 1347                               1 4.382027 5.0751738 0.0000000
## 1348                               1 4.779123 4.4426513 0.6931472
## 1349                               2 4.488636 5.1059455 0.0000000
## 1350                               1 5.273000 2.5649494 0.6931472
## 1351                              11 6.907755 3.7841896 3.4011974
## 1352                               1 5.416100 3.9318256 1.3862944
## 1353                               1 5.105945 5.1873858 0.6931472
## 1354                               2 4.094345 5.3278762 0.6931472
## 1355                               1 5.105945 1.3862944 1.6094379
## 1356                               1 4.382027 0.6931472 2.6390573
## 1357                               1 3.951244 0.0000000 1.0986123
## 1358                               1 5.075174 0.6931472 1.3862944
## 1359                               1 4.700480 1.0986123 1.6094379
## 1360                               1 4.094345 2.9444390 0.6931472
## 1361                               1 5.700444 4.0775374 1.0986123
## 1362                               1 5.298317 0.0000000 1.7917595
## 1363                               1 6.551080 0.0000000 1.6094379
## 1364                               1 4.787492 5.5373343 1.0986123
## 1365                               2 4.174387 4.8598124 0.6931472
## 1366                               2 5.572154 2.3978953 3.4011974
## 1367                               1 4.787492 3.4657359 2.9957323
## 1368                               3 5.010635 2.0794415 1.6094379
## 1369                               1 4.094345 5.5645204 0.6931472
## 1370                               1 5.857933 1.0986123 0.6931472
## 1371                               2 4.262680 3.1354942 0.6931472
## 1372                               2 6.070738 4.6821312 1.6094379
## 1373                               1 4.369448 2.1972246 1.0986123
## 1374                               1 4.941642 5.5134287 0.6931472
## 1375                               2 4.110874 4.6728288 1.3862944
## 1376                               1 4.605170 3.7135721 1.0986123
## 1377                               1 5.521461 3.7612001 1.3862944
## 1378                               1 4.976734 3.6635616 1.0986123
## 1379                               1 3.806662 3.4339872 1.3862944
## 1380                               2 4.290459 1.7917595 1.7917595
## 1381                               1 5.010635 2.8903718 1.0986123
## 1382                               1 5.455321 3.3672958 2.9957323
## 1383                               1 5.010635 2.3978953 0.0000000
## 1384                               1 4.174387 5.0814044 1.3862944
## 1385                               1 5.273000 3.6635616 0.0000000
## 1386                               1 4.499810 0.6931472 1.9459101
## 1387                               1 6.388561 4.0775374 1.6094379
## 1388                               1 4.691348 5.7776523 0.0000000
## 1389                               1 5.298317 4.0253517 1.0986123
## 1390                              52 4.499810 1.0986123 3.4011974
## 1391                              52 4.605170 0.6931472 3.4011974
## 1392                              52 4.442651 0.6931472 3.4011974
## 1393                              52 4.465908 1.0986123 3.4011974
## 1394                              52 4.553877 0.0000000 3.4011974
## 1395                               1 5.855072 4.0604430 1.0986123
## 1396                               1 4.595120 2.3025851 1.0986123
## 1397                               1 5.075174 4.4188406 0.6931472
## 1398                               1 5.003946 2.4849066 1.3862944
## 1399                               1 4.094345 0.0000000 1.0986123
## 1400                               1 5.652489 2.3025851 1.9459101
## 1401                               1 4.276666 3.8712010 0.0000000
## 1402                               1 5.010635 1.6094379 2.7725887
## 1403                               1 5.298317 2.7080502 1.0986123
## 1404                               2 4.369448 5.8493248 0.0000000
## 1405                               2 5.283204 4.6821312 0.0000000
## 1406                               2 4.317488 5.0937502 1.0986123
## 1407                               1 4.844187 5.2040067 1.0986123
## 1408                               1 4.700480 3.6109179 0.0000000
## 1409                               1 4.234107 3.4011974 0.0000000
## 1410                               1 4.605170 1.0986123 4.0943446
## 1411                               1 4.595120 3.8286414 1.0986123
## 1412                               1 4.934474 5.3518581 0.6931472
## 1413                               1 4.727388 4.5325995 0.0000000
## 1414                               1 5.521461 2.3025851 0.6931472
## 1415                               1 5.686975 4.2766661 1.3862944
## 1416                              11 7.600902 4.0775374 3.4011974
## 1417                               1 5.393628 2.8903718 0.6931472
## 1418                               1 4.317488 1.7917595 1.6094379
## 1419                               1 4.605170 2.7080502 3.4339872
## 1420                               1 5.293305 4.3567088 1.3862944
## 1421                               1 5.298317 2.8332133 1.0986123
## 1422                               1 4.941642 2.7080502 1.3862944
## 1423                               1 3.912023 0.0000000 1.9459101
## 1424                               3 3.806662 4.2341065 1.6094379
## 1425                               2 4.691348 4.7361984 3.4339872
## 1426                               2 4.682131 5.0814044 1.0986123
## 1427                               3 3.737670 4.2484952 1.6094379
## 1428                               1 4.948760 3.8286414 0.6931472
## 1429                               1 5.872118 2.9444390 1.6094379
## 1430                               2 4.382027 5.0875963 1.0986123
## 1431                               3 5.521461 4.2484952 0.6931472
## 1432                               1 4.317488 2.3978953 2.6390573
## 1433                               1 4.477337 0.6931472 0.6931472
## 1434                               1 4.174387 3.6635616 1.6094379
## 1435                               2 4.060443 4.0253517 0.6931472
## 1436                               1 4.317488 0.0000000 1.0986123
## 1437                               1 4.605170 3.5553481 0.6931472
## 1438                               1 5.117994 3.4657359 1.6094379
## 1439                               2 4.174387 0.0000000 0.6931472
## 1440                               2 4.828314 2.4849066 3.0445224
## 1441                               3 4.553877 5.3518581 0.6931472
## 1442                               1 3.988984 3.8712010 0.6931472
## 1443                               2 4.488636 5.3890717 0.6931472
## 1444                               2 4.521789 5.3844951 1.0986123
## 1445                               1 5.293305 3.6888795 1.7917595
## 1446                               1 5.187386 3.6109179 2.6390573
## 1447                               3 4.174387 3.3322045 2.9957323
## 1448                               2 4.007333 4.1896547 1.0986123
## 1449                               6 4.859812 3.7612001 3.4011974
## 1450                               6 4.897840 2.1972246 3.4011974
## 1451                               1 3.555348 2.5649494 1.0986123
## 1452                               1 5.521461 4.0943446 0.0000000
## 1453                               1 5.517453 2.9444390 1.3862944
## 1454                               2 4.127134 5.6903595 0.0000000
## 1455                               1 4.779123 4.5643482 0.0000000
## 1456                               1 5.187386 4.3438054 0.6931472
## 1457                               2 5.393628 4.7449321 0.0000000
## 1458                               1 5.288267 5.6835798 0.0000000
## 1459                               3 5.043425 4.1896547 1.0986123
## 1460                               1 5.293305 1.3862944 1.9459101
## 1461                               1 4.553877 3.6635616 1.0986123
## 1462                               1 6.309918 5.1532916 1.3862944
## 1463                               2 4.094345 5.6869754 0.6931472
## 1464                               2 5.940171 4.1271344 1.3862944
## 1465                               1 4.430817 4.9272537 0.6931472
## 1466                               1 5.105945 3.2958369 3.4011974
## 1467                               1 4.653960 4.5643482 3.4011974
## 1468                               1 4.897840 4.7791235 0.6931472
## 1469                               1 4.219508 2.0794415 1.6094379
## 1470                               1 4.290459 4.6051702 3.4011974
## 1471                               1 5.010635 0.0000000 1.6094379
## 1472                               1 4.605170 4.4886364 1.0986123
## 1473                               2 4.317488 5.1704840 0.6931472
## 1474                               1 4.787492 3.4339872 1.3862944
## 1475                               2 4.442651 5.4764636 1.3862944
## 1476                               1 4.007333 4.3694479 0.6931472
## 1477                               1 4.553877 2.5649494 2.3025851
## 1478                               3 4.276666 2.3978953 2.6390573
## 1479                               2 5.521461 1.6094379 4.3820266
## 1480                               1 4.234107 2.5649494 0.6931472
## 1481                               2 4.356709 5.2470241 1.3862944
## 1482                               2 5.393628 6.0014149 0.0000000
## 1483                               1 5.438079 3.2958369 0.6931472
## 1484                               1 5.010635 4.3694479 1.3862944
## 1485                               2 4.382027 2.6390573 0.6931472
## 1486                               2 5.010635 3.4657359 1.0986123
## 1487                               1 5.010635 4.3307333 1.0986123
## 1488                               2 6.802395 1.9459101 0.0000000
## 1489                               1 4.867534 2.3978953 1.9459101
## 1490                               3 4.248495 2.8903718 1.6094379
## 1491                               3 4.787492 4.0943446 1.0986123
## 1492                               2 4.317488 4.0775374 3.4011974
## 1493                               2 4.605170 3.0910425 2.7080502
## 1494                               3 4.234107 0.6931472 1.0986123
## 1495                               1 5.988961 4.6443909 1.9459101
## 1496                               1 5.700444 1.7917595 1.0986123
## 1497                               1 4.605170 5.7868974 1.0986123
## 1498                               2 4.219508 4.0073332 3.3322045
## 1499                               1 5.164786 4.0253517 1.6094379
## 1500                               1 5.799093 3.9318256 1.0986123
## 1501                               1 6.052089 1.9459101 1.6094379
## 1502                               1 5.480639 4.4543473 1.6094379
## 1503                               2 4.317488 3.5835189 3.4011974
## 1504                               1 5.347108 4.3174881 0.6931472
## 1505                               2 5.164786 5.8944028 0.0000000
## 1506                               1 4.442651 4.9836066 0.6931472
## 1507                               3 4.787492 3.9318256 1.0986123
## 1508                               3 4.787492 4.0073332 1.0986123
## 1509                               2 4.317488 0.0000000 1.6094379
## 1510                               1 6.204558 3.3672958 1.0986123
## 1511                               2 4.174387 3.4011974 2.6390573
## 1512                               4 3.663562 5.1298987 0.6931472
## 1513                               1 4.532599 0.0000000 1.3862944
## 1514                               4 4.983607 2.0794415 0.6931472
## 1515                               1 4.787492 2.4849066 1.0986123
## 1516                               1 4.369448 2.9444390 1.0986123
## 1517                               1 4.605170 2.1972246 1.6094379
## 1518                               2 4.787492 1.6094379 0.0000000
## 1519                               2 5.010635 2.8332133 1.6094379
## 1520                               1 4.969813 4.2484952 1.3862944
## 1521                               1 5.857933 0.0000000 0.0000000
## 1522                               2 4.442651 0.0000000 1.6094379
## 1523                               1 5.273000 2.8332133 1.0986123
## 1524                               1 5.298317 4.0775374 0.6931472
## 1525                               1 5.129899 4.1271344 1.6094379
## 1526                               2 4.553877 1.7917595 2.3025851
## 1527                               1 5.926926 3.4965076 0.6931472
## 1528                               2 5.123964 5.0625950 0.6931472
## 1529                               1 3.912023 2.0794415 1.3862944
## 1530                               3 4.859812 4.8598124 0.6931472
## 1531                               1 5.501258 0.0000000 1.7917595
## 1532                              28 5.293305 3.9120230 1.0986123
## 1533                              28 5.293305 4.7535902 1.0986123
## 1534                               2 4.595120 4.4886364 1.7917595
## 1535                               1 5.075174 2.8332133 0.0000000
## 1536                               2 4.174387 5.0998664 0.6931472
## 1537                               1 4.248495 4.2046926 1.9459101
## 1538                               1 4.382027 4.9052748 0.0000000
## 1539                              52 4.605170 1.0986123 3.4011974
## 1540                               1 4.248495 4.9344739 0.0000000
## 1541                               1 5.298317 3.1354942 0.6931472
## 1542                               1 4.189655 3.9318256 1.0986123
## 1543                               1 5.298317 5.3132060 1.0986123
## 1544                               2 4.553877 5.0998664 0.6931472
## 1545                               1 4.941642 1.7917595 0.0000000
## 1546                               1 4.174387 5.7899602 0.0000000
## 1547                               1 4.663439 2.3025851 1.9459101
## 1548                               1 5.043425 4.4067192 5.1984970
## 1549                               1 5.517453 4.7095302 0.6931472
## 1550                               1 4.787492 1.7917595 1.9459101
## 1551                               3 3.951244 3.5553481 1.6094379
## 1552                               3 4.317488 4.0430513 3.2580965
## 1553                               1 5.273000 4.3820266 0.6931472
## 1554                               4 6.437752 0.0000000 1.3862944
## 1555                               8 5.141664 1.3862944 3.4011974
## 1556                               8 5.220356 2.0794415 3.4011974
## 1557                               1 4.007333 3.6635616 1.9459101
## 1558                               1 3.912023 3.2958369 0.6931472
## 1559                              52 4.787492 1.0986123 3.4011974
## 1560                               1 5.347108 2.3025851 2.6390573
## 1561                               1 4.890349 0.0000000 0.6931472
## 1562                               1 4.290459 3.0445224 3.4011974
## 1563                               1 5.857933 5.4680601 0.0000000
## 1564                               1 5.556828 2.9957323 0.6931472
## 1565                               1 4.574711 0.6931472 1.9459101
## 1566                               1 5.293305 4.1896547 1.9459101
## 1567                               1 4.828314 1.9459101 0.6931472
## 1568                               1 4.605170 5.6094718 0.0000000
## 1569                               3 3.663562 4.0943446 1.6094379
## 1570                               1 4.828314 2.9444390 3.3322045
## 1571                               1 5.010635 0.6931472 0.0000000
## 1572                               1 5.135798 4.4188406 1.9459101
## 1573                               1 5.293305 5.3890717 1.0986123
## 1574                               1 4.828314 5.5984220 1.0986123
## 1575                               1 5.043425 2.8903718 1.6094379
## 1576                               1 4.787492 4.8828019 1.3862944
## 1577                               1 5.393628 5.0172798 1.0986123
## 1578                               1 4.499810 1.0986123 0.0000000
## 1579                               1 4.110874 5.1179938 0.6931472
## 1580                               1 5.187386 5.3612922 1.3862944
## 1581                               1 4.682131 0.6931472 1.6094379
## 1582                               1 6.354370 2.4849066 1.0986123
## 1583                               4 4.595120 5.8664681 0.0000000
## 1584                               1 5.164786 1.0986123 1.0986123
## 1585                               1 4.700480 1.0986123 0.0000000
## 1586                               1 5.521461 1.3862944 2.3025851
## 1587                               1 4.605170 4.7273878 0.0000000
## 1588                               1 5.298317 2.3978953 1.3862944
## 1589                               1 4.488636 2.8332133 1.0986123
## 1590                               1 5.991465 3.8286414 1.0986123
## 1591                               2 5.003946 3.9512437 3.0445224
## 1592                               1 6.214608 2.3025851 2.3025851
## 1593                               1 4.553877 4.1588831 1.6094379
## 1594                               1 4.828314 4.6443909 1.0986123
## 1595                               1 4.382027 4.3174881 1.3862944
## 1596                               2 4.653960 5.4249500 1.6094379
## 1597                              18 3.663562 2.5649494 3.4011974
## 1598                               4 3.891820 5.2417470 0.6931472
## 1599                               1 5.231109 0.0000000 2.6390573
## 1600                               1 4.007333 2.3025851 1.0986123
## 1601                               1 5.521461 4.1108739 1.0986123
## 1602                               1 4.828314 1.0986123 1.3862944
## 1603                               1 4.605170 3.2958369 0.6931472
## 1604                               1 5.164786 0.0000000 1.9459101
## 1605                               1 3.912023 3.4657359 1.3862944
## 1606                               1 4.890349 3.0910425 1.7917595
## 1607                               1 5.043425 4.1431347 1.6094379
## 1608                               1 4.941642 2.7080502 1.6094379
## 1609                               1 4.382027 4.2766661 0.6931472
## 1610                               3 4.634729 4.0604430 0.6931472
## 1611                               2 6.396930 2.1972246 1.0986123
## 1612                               3 4.248495 5.1298987 1.0986123
## 1613                               1 4.317488 0.6931472 1.0986123
## 1614                               3 4.007333 4.1896547 1.0986123
## 1615                               1 3.912023 3.1780538 1.3862944
## 1616                               1 5.966147 0.0000000 1.0986123
## 1617                               2 4.406719 4.6821312 2.0794415
## 1618                               2 3.951244 2.9444390 1.0986123
## 1619                               1 4.744932 4.5108595 0.6931472
## 1620                               2 5.700444 4.2046926 0.6931472
## 1621                               1 5.164786 4.1588831 2.5649494
## 1622                               1 4.605170 1.3862944 4.4998097
## 1623                               1 4.007333 1.0986123 4.3820266
## 1624                               5 3.806662 4.3438054 0.6931472
## 1625                               1 5.105945 3.7135721 0.0000000
## 1626                               1 4.653960 0.6931472 1.9459101
## 1627                               1 5.298317 1.3862944 1.0986123
## 1628                               1 4.174387 0.0000000 3.4011974
## 1629                               1 4.605170 0.0000000 1.9459101
## 1630                               1 5.743003 5.7104270 0.6931472
## 1631                               1 5.273000 0.0000000 0.0000000
## 1632                               1 4.605170 1.0986123 3.3672958
## 1633                               1 5.043425 2.5649494 1.0986123
## 1634                               1 5.105945 5.6204009 1.0986123
## 1635                               1 4.787492 3.0910425 1.0986123
## 1636                               4 3.637586 5.2311086 0.0000000
## 1637                               1 4.499810 0.0000000 2.3025851
## 1638                               1 4.442651 4.9272537 0.6931472
## 1639                               2 4.007333 3.4339872 0.6931472
## 1640                               1 5.857933 2.5649494 0.6931472
## 1641                               1 4.077537 2.4849066 1.3862944
## 1642                               2 5.634790 4.5747110 1.3862944
## 1643                               2 4.234107 5.0304379 0.0000000
## 1644                               1 5.438079 4.2766661 1.6094379
## 1645                               1 5.298317 4.2766661 0.6931472
## 1646                               1 5.010635 3.9512437 1.6094379
## 1647                               1 4.317488 3.3322045 0.0000000
## 1648                               3 4.787492 0.6931472 1.0986123
## 1649                               1 4.941642 2.8903718 3.4011974
## 1650                               1 5.298317 2.0794415 0.6931472
## 1651                               2 5.416100 1.0986123 1.0986123
## 1652                               1 4.976734 1.3862944 1.9459101
## 1653                               2 4.094345 4.4543473 1.0986123
## 1654                               1 4.779123 1.9459101 1.6094379
## 1655                               1 5.241747 4.2195077 0.6931472
## 1656                               5 5.247024 5.2203558 0.6931472
## 1657                               1 4.234107 3.8712010 1.9459101
## 1658                               2 4.248495 4.9972123 0.0000000
## 1659                               1 5.043425 2.0794415 0.6931472
## 1660                               3 5.003946 4.2046926 0.6931472
## 1661                               1 5.075174 4.9972123 0.0000000
## 1662                               6 4.605170 0.0000000 2.9957323
## 1663                               1 5.393628 0.0000000 3.2188758
## 1664                               2 4.442651 5.3518581 0.6931472
## 1665                               1 4.905275 2.8903718 1.6094379
## 1666                               5 3.806662 5.1239640 0.0000000
## 1667                               1 5.416100 3.9120230 0.0000000
## 1668                               1 4.605170 2.3978953 1.9459101
## 1669                               1 4.976734 4.7957905 1.0986123
## 1670                               1 5.347108 4.6821312 0.0000000
## 1671                               1 5.273000 2.3025851 1.3862944
## 1672                               1 4.553877 3.8286414 1.9459101
## 1673                               1 4.941642 3.5263605 0.6931472
## 1674                               1 4.553877 3.2188758 0.6931472
## 1675                               1 5.686975 2.3978953 2.3025851
## 1676                               2 5.521461 0.6931472 2.1972246
## 1677                               1 4.094345 3.2188758 0.0000000
## 1678                               1 5.010635 1.3862944 0.6931472
## 1679                               1 5.068904 5.5606816 0.6931472
## 1680                               1 4.356709 3.9512437 0.0000000
## 1681                               1 5.347108 3.8712010 3.4011974
## 1682                               2 4.094345 2.4849066 2.6390573
## 1683                               1 5.393628 3.1354942 1.7917595
## 1684                               2 5.293305 2.9957323 5.5797298
## 1685                               2 5.416100 2.5649494 5.7037825
## 1686                               2 5.857933 2.5649494 1.7917595
## 1687                               1 4.174387 4.5325995 0.6931472
## 1688                               1 5.416100 1.0986123 1.9459101
## 1689                               1 4.406719 4.1271344 1.0986123
## 1690                               3 4.317488 4.0604430 3.2580965
## 1691                               1 4.653960 1.9459101 2.6390573
## 1692                               1 4.744932 2.4849066 1.3862944
## 1693                               2 5.010635 0.0000000 3.2188758
## 1694                               1 4.174387 1.6094379 1.6094379
## 1695                               2 5.010635 2.5649494 1.3862944
## 1696                               1 4.615121 3.4657359 0.6931472
## 1697                               2 4.867534 3.2580965 1.0986123
## 1698                               1 5.164786 0.0000000 1.0986123
## 1699                               1 4.744932 5.2257467 1.0986123
## 1700                               1 4.852030 5.0369526 1.6094379
## 1701                              52 4.753590 1.6094379 3.4011974
## 1702                               2 5.257495 3.7135721 0.6931472
## 1703                               1 5.010635 1.0986123 2.8332133
## 1704                               1 5.093750 1.0986123 0.0000000
## 1705                               5 3.688879 3.4657359 2.0794415
## 1706                               1 5.298317 1.7917595 2.3025851
## 1707                               1 5.062595 3.6635616 1.6094379
## 1708                               6 4.744932 3.2188758 0.6931472
## 1709                               2 4.442651 5.2470241 0.0000000
## 1710                               1 5.153292 2.7725887 1.3862944
## 1711                               1 5.521461 1.7917595 1.3862944
## 1712                               1 6.142037 3.8501476 3.4011974
## 1713                               1 5.616771 0.6931472 1.9459101
## 1714                               1 5.273000 4.1108739 1.0986123
## 1715                               1 4.143135 1.6094379 1.6094379
## 1716                               1 3.583519 3.4965076 0.0000000
## 1717                               1 4.867534 0.6931472 1.6094379
## 1718                               1 5.298317 2.5649494 1.3862944
## 1719                               1 4.442651 3.5835189 0.6931472
## 1720                               3 3.806662 4.4886364 1.0986123
## 1721                               3 3.806662 4.8283137 1.0986123
## 1722                               2 4.369448 1.6094379 1.6094379
## 1723                               1 5.003946 0.0000000 1.3862944
## 1724                               1 5.298317 1.0986123 1.9459101
## 1725                               1 4.442651 0.0000000 0.0000000
## 1726                               1 4.094345 2.4849066 1.0986123
## 1727                               8 4.934474 2.7725887 3.8066625
## 1728                               1 5.075174 2.9444390 3.4011974
## 1729                               1 4.553877 5.0106353 1.3862944
## 1730                               1 4.382027 2.7080502 2.3025851
## 1731                               1 5.521461 0.6931472 1.6094379
## 1732                               1 5.855072 1.0986123 1.0986123
## 1733                               1 5.105945 2.0794415 1.9459101
## 1734                               1 4.779123 3.7376696 1.6094379
## 1735                               1 5.480639 1.9459101 1.9459101
## 1736                               1 4.369448 0.0000000 1.3862944
## 1737                               2 5.370638 0.0000000 1.0986123
## 1738                               1 3.891820 4.1108739 0.0000000
## 1739                               1 5.247024 4.3307333 1.0986123
## 1740                               1 4.595120 3.9512437 0.6931472
## 1741                               5 4.219508 3.6109179 2.0794415
## 1742                               1 5.220356 3.5835189 3.4011974
## 1743                               1 5.416100 4.5217886 1.3862944
## 1744                               1 4.394449 4.1588831 2.3025851
## 1745                               1 5.293305 3.1354942 1.6094379
## 1746                               1 4.007333 0.6931472 0.6931472
## 1747                               1 5.828946 3.6375862 1.9459101
## 1748                               2 4.905275 5.3230100 1.0986123
## 1749                               1 4.442651 4.6821312 0.6931472
## 1750                               1 4.174387 1.3862944 1.9459101
## 1751                               1 4.605170 2.5649494 3.4011974
## 1752                               3 4.691348 4.2904594 0.0000000
## 1753                               1 5.669881 4.2484952 0.6931472
## 1754                               1 4.997212 3.3672958 1.6094379
## 1755                               4 4.043051 2.8332133 0.6931472
## 1756                               1 5.010635 3.1354942 1.7917595
## 1757                               4 4.094345 4.2046926 0.6931472
## 1758                               4 4.094345 3.8712010 0.6931472
## 1759                               1 3.806662 4.6728288 0.6931472
## 1760                               4 4.094345 3.4965076 0.6931472
## 1761                               1 4.828314 4.8202816 1.0986123
## 1762                               4 4.094345 3.5835189 0.6931472
## 1763                               1 4.317488 3.6375862 0.6931472
## 1764                               1 4.795791 1.7917595 0.6931472
## 1765                               3 4.488636 4.4886364 0.6931472
## 1766                               1 5.703782 0.0000000 3.4011974
## 1767                               1 4.700480 1.3862944 0.0000000
## 1768                               1 4.595120 2.3025851 1.9459101
## 1769                               1 5.135798 3.7135721 1.9459101
## 1770                               1 4.499810 3.1780538 0.6931472
## 1771                               1 5.187386 5.5254529 0.6931472
## 1772                               2 4.382027 3.7135721 1.3862944
## 1773                               2 4.174387 3.3672958 1.6094379
## 1774                               1 4.234107 5.7745515 0.0000000
## 1775                               1 3.737670 2.8903718 0.0000000
## 1776                               1 4.248495 2.0794415 0.0000000
## 1777                               1 5.043425 3.0910425 1.6094379
## 1778                               1 4.905275 5.4161004 0.0000000
## 1779                               2 4.787492 4.3694479 3.0445224
## 1780                               1 4.905275 1.9459101 2.0794415
## 1781                               1 3.850148 2.9957323 0.0000000
## 1782                               1 4.234107 2.8903718 1.3862944
## 1783                               1 4.605170 3.6109179 0.6931472
## 1784                               2 3.931826 3.5835189 1.0986123
## 1785                               1 4.174387 0.6931472 5.1929569
## 1786                               2 4.094345 4.8362819 1.0986123
## 1787                               1 4.248495 4.4308168 0.0000000
## 1788                               2 4.867534 3.2580965 1.0986123
## 1789                               3 4.248495 3.6109179 0.0000000
## 1790                               1 5.298317 5.5872487 0.6931472
## 1791                               1 5.010635 2.3978953 1.0986123
## 1792                               1 4.867534 3.8501476 1.6094379
## 1793                               1 4.219508 0.0000000 1.9459101
## 1794                               2 4.369448 4.9199809 0.0000000
## 1795                               1 5.003946 2.1972246 2.3025851
## 1796                               1 5.521461 0.0000000 1.3862944
## 1797                               1 5.164786 3.1354942 1.9459101
## 1798                               3 3.688879 1.3862944 2.7080502
## 1799                               3 4.007333 2.3978953 2.3978953
## 1800                               1 4.595120 6.2915691 0.6931472
## 1801                               1 5.480639 3.2580965 1.9459101
## 1802                               1 5.991465 3.8501476 0.6931472
## 1803                               1 5.459586 1.6094379 1.0986123
## 1804                               1 4.867534 1.3862944 1.6094379
## 1805                               1 4.564348 5.4116461 1.6094379
## 1806                               3 4.143135 3.2580965 0.6931472
## 1807                               2 5.010635 2.0794415 2.3025851
## 1808                               1 5.298317 2.3978953 0.6931472
## 1809                               1 4.499810 1.7917595 1.9459101
## 1810                               1 5.594711 2.7080502 1.6094379
## 1811                               1 4.382027 3.1780538 0.6931472
## 1812                               1 5.991465 1.9459101 1.9459101
## 1813                               1 5.855072 2.8332133 1.0986123
## 1814                               1 6.204558 4.1896547 0.6931472
## 1815                               1 4.442651 2.5649494 2.6390573
## 1816                               1 4.442651 3.0910425 2.7080502
## 1817                               1 6.906755 3.4011974 2.3025851
## 1818                               2 4.691348 3.2580965 1.0986123
## 1819                               1 5.164786 3.9120230 1.0986123
## 1820                               1 5.010635 2.6390573 1.3862944
## 1821                               1 4.382027 4.3820266 1.3862944
## 1822                               1 5.010635 0.0000000 1.9459101
## 1823                               1 5.164786 3.4965076 0.0000000
## 1824                               8 4.672829 2.7080502 3.4011974
## 1825                               1 4.382027 3.0910425 4.0943446
## 1826                               4 4.382027 2.0794415 1.0986123
## 1827                               2 4.317488 1.3862944 0.0000000
## 1828                               1 6.684612 3.5263605 0.0000000
## 1829                               1 4.867534 5.3890717 0.0000000
## 1830                               1 5.560682 3.1354942 1.7917595
## 1831                               1 3.583519 2.0794415 0.0000000
## 1832                               1 4.941642 2.3978953 0.6931472
## 1833                               1 4.976734 5.3936275 0.6931472
## 1834                               1 4.787492 2.0794415 1.0986123
## 1835                               6 4.317488 1.6094379 2.8903718
## 1836                               1 4.094345 0.6931472 0.6931472
## 1837                               1 4.234107 3.9318256 3.4011974
## 1838                               1 4.553877 1.9459101 0.0000000
## 1839                               1 5.703782 4.5325995 3.4011974
## 1840                               1 4.875197 5.3936275 0.6931472
## 1841                               1 4.787492 1.7917595 1.6094379
## 1842                               1 4.605170 2.7080502 1.6094379
## 1843                               1 4.605170 2.9957323 1.3862944
## 1844                               1 5.075174 5.2311086 0.0000000
## 1845                               4 4.094345 2.8332133 0.6931472
## 1846                               3 4.317488 3.8286414 1.0986123
## 1847                               4 3.806662 3.6635616 0.6931472
## 1848                               1 4.174387 2.7080502 0.6931472
## 1849                               1 4.787492 4.9767337 1.6094379
## 1850                               1 4.382027 2.7725887 1.3862944
## 1851                               1 4.605170 3.9512437 1.9459101
## 1852                               1 5.521461 4.4067192 0.6931472
## 1853                               1 5.459586 4.5747110 0.6931472
## 1854                               2 4.442651 3.5553481 0.6931472
## 1855                               1 5.273000 2.0794415 3.4339872
## 1856                               2 4.976734 5.1119878 1.0986123
## 1857                               4 5.666427 3.6375862 1.0986123
## 1858                               1 4.787492 2.8332133 3.4011974
## 1859                               2 5.003946 3.2580965 1.6094379
## 1860                               1 4.605170 3.4339872 0.0000000
## 1861                               1 5.111988 2.7080502 0.0000000
## 1862                               1 4.595120 4.6634391 1.0986123
## 1863                               2 5.010635 3.6109179 0.6931472
## 1864                               1 3.784190 5.0434251 0.6931472
## 1865                               1 5.273000 2.4849066 0.6931472
## 1866                               2 4.605170 2.0794415 1.3862944
## 1867                               1 4.094345 1.0986123 1.6094379
## 1868                               2 4.127134 3.8066625 0.6931472
## 1869                               1 4.595120 2.0794415 1.6094379
## 1870                               1 4.499810 3.2188758 2.7080502
## 1871                               3 4.477337 4.6051702 0.0000000
## 1872                               1 4.828314 4.1588831 0.0000000
## 1873                               1 4.304065 2.0794415 0.0000000
## 1874                               1 5.170484 3.4965076 1.9459101
## 1875                               2 4.127134 2.3978953 0.6931472
## 1876                               5 3.931826 1.3862944 0.0000000
## 1877                               1 5.517453 3.4339872 1.0986123
## 1878                               3 5.298317 4.4067192 0.6931472
## 1879                               1 3.401197 5.6733233 0.6931472
## 1880                               1 5.480639 3.0910425 0.6931472
## 1881                               2 4.605170 4.0604430 0.0000000
## 1882                               1 4.828314 4.2626799 0.6931472
## 1883                               2 5.003946 4.4543473 3.3672958
## 1884                               1 5.135798 5.7525726 0.0000000
## 1885                               1 5.010635 1.0986123 0.6931472
## 1886                               1 4.828314 4.3438054 1.3862944
## 1887                               2 4.219508 3.7612001 1.6094379
## 1888                               1 4.499810 3.5553481 1.9459101
## 1889                               2 4.174387 4.2195077 1.0986123
## 1890                               3 3.912023 2.3025851 3.4339872
## 1891                               3 4.174387 4.8828019 1.0986123
## 1892                               1 5.298317 0.0000000 3.4011974
## 1893                               3 4.174387 4.7535902 1.0986123
## 1894                               1 4.060443 1.9459101 2.3025851
## 1895                               1 4.174387 0.6931472 0.6931472
## 1896                               1 5.220356 2.0794415 1.3862944
## 1897                               1 4.744932 1.7917595 1.3862944
## 1898                               1 4.744932 2.9957323 0.6931472
## 1899                               1 4.941642 4.8283137 1.3862944
## 1900                               1 4.127134 3.0910425 0.6931472
## 1901                               1 4.553877 5.0369526 1.0986123
## 1902                               1 4.605170 1.9459101 1.0986123
## 1903                               1 4.727388 4.2626799 1.0986123
## 1904                               1 4.682131 1.6094379 3.4011974
## 1905                               3 4.127134 4.7184989 1.0986123
## 1906                               1 4.553877 3.5835189 1.0986123
## 1907                               2 5.298317 1.3862944 1.3862944
## 1908                               1 5.105945 3.0445224 0.6931472
## 1909                               1 4.094345 4.6913479 0.0000000
## 1910                               2 4.382027 3.6109179 0.6931472
## 1911                               1 4.605170 4.3567088 1.7917595
## 1912                               1 4.700480 5.3612922 1.0986123
## 1913                               1 3.912023 2.7080502 1.0986123
## 1914                               3 4.369448 4.6249728 0.6931472
## 1915                               1 4.941642 4.5325995 1.0986123
## 1916                               1 5.826000 3.3322045 1.3862944
## 1917                               2 4.007333 4.7535902 0.0000000
## 1918                               2 4.394449 5.7462032 0.0000000
## 1919                               1 5.252273 5.0498560 1.0986123
## 1920                               1 4.934474 4.6634391 1.0986123
## 1921                               1 6.214608 0.0000000 1.6094379
## 1922                               1 4.787492 3.2958369 0.6931472
## 1923                               4 4.094345 3.9702919 0.6931472
## 1924                               3 5.686975 2.0794415 0.6931472
## 1925                               1 4.605170 2.3025851 1.7917595
## 1926                               3 3.891820 6.3868793 0.0000000
## 1927                               1 5.010635 2.1972246 1.0986123
## 1928                               1 4.787492 5.0937502 0.6931472
## 1929                               1 7.824046 2.7080502 3.4011974
## 1930                               1 5.164786 3.8918203 3.2188758
## 1931                               1 4.672829 4.9904326 0.6931472
## 1932                               1 4.584967 4.3567088 1.0986123
## 1933                               1 3.850148 4.2626799 0.0000000
## 1934                               3 5.135798 4.4543473 1.6094379
## 1935                               1 5.010635 4.4998097 1.0986123
## 1936                               1 4.143135 4.6443909 1.0986123
## 1937                               1 4.700480 3.3322045 1.0986123
## 1938                               1 5.796058 0.6931472 1.3862944
## 1939                               3 3.891820 6.3919171 0.0000000
## 1940                               3 3.891820 6.4085288 0.0000000
## 1941                               1 5.105945 3.6109179 1.3862944
## 1942                               1 5.075174 5.0238805 1.6094379
## 1943                               3 3.637586 4.1896547 1.0986123
## 1944                               1 5.135798 3.3322045 1.9459101
## 1945                               1 4.653960 5.4510385 0.6931472
## 1946                               3 3.912023 3.4011974 0.6931472
## 1947                               1 4.605170 0.6931472 1.0986123
## 1948                               1 6.791221 3.2580965 1.0986123
## 1949                               2 5.075174 3.1780538 1.0986123
## 1950                               1 4.976734 5.0562458 0.6931472
## 1951                               1 3.931826 1.3862944 1.0986123
## 1952                               1 5.010635 4.9126549 1.0986123
## 1953                               2 5.192957 1.6094379 1.0986123
## 1954                               1 5.416100 1.0986123 0.0000000
## 1955                               1 5.521461 3.8712010 1.0986123
## 1956                               1 4.025352 4.6347290 0.0000000
## 1957                               4 4.248495 4.2904594 1.9459101
## 1958                               1 4.248495 5.0937502 0.6931472
## 1959                               1 4.828314 5.0304379 0.6931472
## 1960                               1 5.988961 5.6594822 0.6931472
## 1961                               1 5.056246 0.0000000 1.7917595
## 1962                               1 4.976734 3.3322045 1.9459101
## 1963                               1 4.317488 4.7874917 0.0000000
## 1964                               1 5.634790 4.2195077 1.0986123
## 1965                               1 5.393628 3.0910425 1.3862944
## 1966                               1 5.247024 3.3322045 3.3322045
## 1967                               2 5.298317 3.0910425 1.7917595
## 1968                               1 4.343805 4.3567088 0.0000000
## 1969                               3 3.555348 4.2341065 1.6094379
## 1970                               3 3.401197 4.5108595 1.6094379
## 1971                               1 5.293305 2.4849066 3.3672958
## 1972                               1 4.941642 3.2188758 1.0986123
## 1973                               1 4.820282 1.3862944 3.4011974
## 1974                               1 5.686975 4.5217886 1.9459101
## 1975                               1 5.075174 2.5649494 1.9459101
## 1976                               2 5.855072 3.4011974 0.0000000
## 1977                               6 4.584967 3.6375862 0.6931472
## 1978                               2 4.330733 4.3174881 0.0000000
## 1979                               1 5.438079 2.9957323 1.0986123
## 1980                               1 4.094345 2.5649494 1.0986123
## 1981                               1 4.770685 4.7535902 3.4011974
## 1982                               1 4.828314 3.5553481 2.9957323
## 1983                               2 5.273000 4.0073332 3.3672958
## 1984                               1 4.442651 4.6051702 0.6931472
## 1985                               1 4.007333 2.8332133 2.6390573
## 1986                               1 5.043425 2.9957323 0.6931472
## 1987                               1 4.595120 4.5432948 0.0000000
## 1988                               2 4.941642 4.3944492 3.4011974
## 1989                               3 4.442651 3.4657359 0.0000000
## 1990                               1 4.317488 2.7080502 1.9459101
## 1991                               2 3.970292 3.6635616 1.6094379
## 1992                               1 5.010635 3.7376696 0.6931472
## 1993                               1 5.187386 5.3423343 1.0986123
## 1994                               1 4.905275 4.2046926 0.0000000
## 1995                               1 5.298317 3.8066625 1.3862944
## 1996                               1 5.298317 0.0000000 1.0986123
## 1997                               2 4.605170 4.7621739 1.6094379
## 1998                               1 4.897840 2.6390573 2.6390573
## 1999                               2 4.605170 6.0258660 0.0000000
## 2000                               1 3.912023 2.3978953 2.9957323
## 2001                               1 3.912023 2.7725887 3.6888795
## 2002                               1 5.991465 3.4011974 3.4011974
## 2003                               2 4.744932 4.3040651 0.6931472
## 2004                               1 5.459586 4.2904594 1.0986123
## 2005                               1 4.828314 3.9120230 1.9459101
## 2006                               1 5.521461 4.0253517 0.6931472
## 2007                               2 6.476972 1.9459101 1.6094379
## 2008                               4 4.574711 2.5649494 1.9459101
## 2009                               2 5.241747 5.4638318 0.6931472
## 2010                               1 4.605170 4.8598124 0.0000000
## 2011                               3 3.891820 4.7361984 1.6094379
## 2012                               1 4.430817 4.2046926 1.0986123
## 2013                               1 5.105945 1.6094379 1.9459101
## 2014                               1 4.465908 3.9318256 4.0775374
## 2015                               2 4.787492 2.7080502 1.7917595
## 2016                               1 5.273000 2.3025851 2.3025851
## 2017                               3 4.488636 3.0445224 0.0000000
## 2018                               1 4.127134 5.7807435 0.6931472
## 2019                               2 4.867534 2.6390573 3.3322045
## 2020                               1 4.317488 3.9318256 1.0986123
## 2021                               1 4.158883 3.5553481 0.6931472
## 2022                               1 5.010635 2.3978953 0.6931472
## 2023                               1 4.605170 3.9702919 0.6931472
## 2024                               1 5.247024 5.0689042 1.0986123
## 2025                               4 4.584967 1.9459101 0.6931472
## 2026                               1 5.010635 3.8712010 3.4011974
## 2027                               2 4.595120 5.0625950 1.0986123
## 2028                               1 5.068904 4.1743873 1.3862944
## 2029                               3 4.248495 2.8903718 0.0000000
## 2030                               2 4.510860 5.9788858 1.6094379
## 2031                               1 5.783825 2.3978953 0.0000000
## 2032                               1 5.003946 3.4965076 1.3862944
## 2033                               1 5.298317 3.5553481 2.3025851
## 2034                               1 5.129899 4.1108739 0.6931472
## 2035                               1 5.517453 2.3025851 1.0986123
## 2036                               1 4.442651 5.5606816 0.6931472
## 2037                               2 4.394449 5.2094862 0.6931472
## 2038                               1 5.293305 3.9889840 0.6931472
## 2039                               1 4.477337 3.6109179 1.0986123
## 2040                               1 5.135798 0.0000000 1.3862944
## 2041                               1 4.867534 1.0986123 2.1972246
## 2042                               4 4.905275 5.2470241 3.4011974
## 2043                               2 4.174387 3.2188758 3.4011974
## 2044                               2 5.105945 5.6383547 1.0986123
## 2045                               2 4.356709 4.2484952 1.3862944
## 2046                               1 5.857933 2.4849066 1.6094379
## 2047                               1 5.075174 4.5643482 1.0986123
## 2048                               1 5.416100 1.7917595 1.6094379
## 2049                               1 5.135798 3.2188758 1.6094379
## 2050                               2 5.855072 1.0986123 1.0986123
## 2051                               4 4.174387 4.0430513 0.6931472
## 2052                               1 6.040255 5.2040067 1.0986123
## 2053                               1 4.779123 2.8332133 1.0986123
## 2054                               1 4.605170 0.0000000 5.8998974
## 2055                               1 4.574711 5.2203558 1.0986123
## 2056                               8 5.252273 2.0794415 3.4011974
## 2057                               8 5.231109 2.5649494 3.4011974
## 2058                               8 5.147494 1.3862944 3.4011974
## 2059                               1 6.856462 3.3322045 1.0986123
## 2060                               2 5.616771 4.3944492 1.3862944
## 2061                               8 4.595120 0.0000000 3.4011974
## 2062                               1 5.811141 2.6390573 2.3978953
## 2063                               1 4.094345 0.0000000 1.9459101
## 2064                               1 4.976734 5.2983174 1.0986123
## 2065                               1 4.317488 2.9444390 1.3862944
## 2066                               1 4.867534 3.4965076 2.9957323
## 2067                               3 6.354370 6.1025586 0.0000000
## 2068                               2 5.686975 0.6931472 1.9459101
## 2069                               1 5.703782 4.6821312 1.0986123
## 2070                               2 4.787492 0.0000000 3.3322045
## 2071                               3 3.912023 4.5217886 1.0986123
## 2072                               1 4.025352 4.7621739 0.6931472
## 2073                               1 5.252273 4.1896547 0.6931472
## 2074                               1 4.905275 4.2484952 1.9459101
## 2075                               1 5.273000 4.5849675 1.9459101
## 2076                               1 4.317488 3.7612001 0.0000000
## 2077                               1 4.595120 3.8066625 2.3025851
## 2078                               2 5.857933 3.7135721 1.0986123
## 2079                               3 3.688879 2.3025851 2.7080502
## 2080                               1 4.867534 4.0604430 0.0000000
## 2081                               1 5.416100 3.8712010 0.6931472
## 2082                               1 5.416100 2.0794415 1.9459101
## 2083                               4 3.637586 4.8441871 0.0000000
## 2084                               1 5.298317 2.3025851 1.9459101
## 2085                               1 5.459586 1.6094379 1.7917595
## 2086                               1 4.317488 2.0794415 1.6094379
## 2087                               1 5.517453 4.2626799 3.4011974
## 2088                               1 4.787492 1.9459101 1.6094379
## 2089                               2 3.912023 0.0000000 3.3322045
## 2090                               1 4.442651 2.3025851 1.0986123
## 2091                               2 4.356709 2.3025851 1.0986123
## 2092                               1 4.700480 3.8918203 1.0986123
## 2093                               4 3.912023 4.9272537 1.0986123
## 2094                               2 3.951244 5.0937502 1.0986123
## 2095                               1 4.653960 2.9957323 3.8066625
## 2096                               1 4.317488 4.8828019 0.6931472
## 2097                               1 4.234107 2.4849066 1.9459101
## 2098                               1 5.105945 2.3978953 4.0943446
## 2099                               1 4.828314 3.8066625 0.6931472
## 2100                               2 4.442651 2.3978953 0.6931472
## 2101                               1 6.212606 3.8501476 1.6094379
## 2102                               1 4.094345 4.1896547 1.6094379
## 2103                               1 4.553877 3.5553481 1.6094379
## 2104                               1 4.653960 2.4849066 1.6094379
## 2105                               5 4.007333 4.1743873 0.6931472
## 2106                               4 5.666427 3.6635616 0.6931472
## 2107                               3 4.248495 3.8066625 0.6931472
## 2108                               1 4.867534 1.6094379 1.9459101
## 2109                               1 4.828314 3.6375862 0.6931472
## 2110                               2 5.010635 2.8332133 0.6931472
## 2111                               2 3.828641 4.2484952 1.3862944
## 2112                               1 4.605170 5.4205350 1.0986123
## 2113                               1 4.499810 2.0794415 1.6094379
## 2114                               1 4.499810 5.1119878 1.0986123
## 2115                               1 5.393628 0.0000000 5.8861040
## 2116                               3 6.907755 3.2188758 0.0000000
## 2117                               3 4.867534 3.9512437 3.4011974
## 2118                               2 6.212606 4.8441871 1.7917595
## 2119                               2 3.806662 2.8903718 0.6931472
## 2120                               2 4.248495 5.3471075 0.6931472
## 2121                               3 4.077537 5.6383547 0.0000000
## 2122                               1 5.075174 4.2484952 1.6094379
## 2123                               1 5.273000 4.8520303 1.3862944
## 2124                               1 4.564348 4.0604430 1.0986123
## 2125                               2 4.317488 5.1873858 1.0986123
## 2126                               3 5.273000 5.1532916 1.0986123
## 2127                               2 5.298317 2.7725887 0.0000000
## 2128                               1 4.934474 3.2580965 3.4011974
## 2129                               2 5.247024 3.4339872 3.4011974
## 2130                               1 4.553877 3.2958369 0.6931472
## 2131                               1 5.857933 1.9459101 1.0986123
## 2132                               3 4.382027 1.9459101 1.0986123
## 2133                               2 4.787492 4.4188406 1.6094379
## 2134                               2 3.737670 3.8286414 0.0000000
## 2135                               1 4.753590 4.7184989 1.3862944
## 2136                               3 4.094345 5.8749307 0.0000000
## 2137                               2 7.240650 4.0073332 0.0000000
## 2138                               1 6.052089 4.2195077 0.6931472
## 2139                               1 5.416100 4.5538769 1.3862944
## 2140                               2 5.068904 2.7725887 1.6094379
## 2141                               3 5.010635 3.7841896 1.9459101
## 2142                               1 5.293305 4.7535902 0.0000000
## 2143                               1 4.248495 1.3862944 0.0000000
## 2144                               2 4.700480 5.4595855 3.4339872
## 2145                               2 4.094345 2.3025851 0.6931472
## 2146                               1 3.912023 0.6931472 1.0986123
## 2147                               1 4.787492 5.8861040 0.0000000
## 2148                               2 4.094345 3.9318256 0.6931472
## 2149                               1 4.976734 4.9836066 0.6931472
## 2150                               2 4.418841 2.7725887 3.4011974
## 2151                               2 4.605170 4.1588831 1.0986123
## 2152                               1 5.298317 1.0986123 0.6931472
## 2153                               1 3.912023 4.9767337 1.0986123
## 2154                               1 4.248495 5.3278762 0.0000000
## 2155                               1 5.164786 5.6312118 0.6931472
## 2156                               1 5.003946 2.8903718 3.3322045
## 2157                               1 4.828314 5.0875963 1.0986123
## 2158                               1 4.060443 5.7776523 0.0000000
## 2159                               2 5.075174 2.5649494 0.6931472
## 2160                               2 5.010635 2.1972246 3.4011974
## 2161                               2 4.875197 3.1354942 3.4011974
## 2162                               2 5.521461 2.8332133 3.4011974
## 2163                               2 4.248495 4.9126549 0.0000000
## 2164                               1 5.003946 3.2580965 1.6094379
## 2165                               1 4.691348 4.2484952 0.6931472
## 2166                               1 5.220356 5.4930614 0.6931472
## 2167                               1 4.927254 1.7917595 2.6390573
## 2168                               2 5.010635 3.5835189 2.3025851
## 2169                               2 4.382027 2.6390573 0.0000000
## 2170                               1 4.317488 0.6931472 0.6931472
## 2171                               1 5.703782 3.7841896 1.6094379
## 2172                               1 5.170484 4.8121844 0.6931472
## 2173                               2 3.850148 5.5134287 0.6931472
## 2174                               6 3.688879 3.2580965 1.9459101
## 2175                               4 4.488636 3.8918203 0.0000000
## 2176                               4 4.317488 5.0238805 0.6931472
## 2177                               2 4.700480 5.2729996 1.9459101
## 2178                               1 4.442651 3.1354942 3.4011974
## 2179                               1 4.276666 3.9889840 1.3862944
## 2180                               1 4.442651 5.4510385 0.6931472
## 2181                               4 5.783825 2.9444390 0.6931472
## 2182                               1 4.828314 4.7535902 0.6931472
## 2183                               1 5.298317 1.0986123 1.0986123
## 2184                               1 5.273000 3.6375862 3.4011974
## 2185                               1 5.241747 5.4249500 1.3862944
## 2186                               1 5.204007 3.2958369 2.1972246
## 2187                               2 4.653960 5.8550719 0.0000000
## 2188                               1 5.480639 4.2046926 0.0000000
## 2189                               2 5.220356 4.5538769 1.3862944
## 2190                               1 5.075174 1.6094379 1.3862944
## 2191                               1 5.521461 3.1354942 1.3862944
## 2192                               1 6.476972 3.5835189 3.4011974
## 2193                               4 3.555348 4.0775374 1.6094379
## 2194                               2 4.442651 4.2766661 1.3862944
## 2195                               1 6.309918 3.0445224 1.0986123
## 2196                               1 4.382027 3.7841896 0.6931472
## 2197                               1 5.164786 3.4657359 1.7917595
## 2198                               1 4.553877 4.8828019 0.6931472
## 2199                               3 5.062595 3.6109179 1.3862944
## 2200                               1 4.442651 3.6109179 1.0986123
## 2201                               1 5.342334 3.1354942 0.0000000
## 2202                               3 5.010635 3.0445224 0.6931472
## 2203                               3 4.248495 4.0073332 0.6931472
## 2204                               1 4.290459 1.7917595 0.0000000
## 2205                               1 4.442651 0.0000000 0.6931472
## 2206                               1 4.553877 5.3844951 1.0986123
## 2207                               1 4.828314 2.7725887 0.6931472
## 2208                               2 4.488636 3.3672958 1.0986123
## 2209                               3 3.912023 3.5835189 0.6931472
## 2210                               2 4.317488 4.2904594 1.6094379
## 2211                               4 4.094345 4.1743873 0.0000000
## 2212                               6 3.806662 2.9957323 1.6094379
## 2213                               1 4.867534 0.0000000 2.6390573
## 2214                               3 4.248495 2.7725887 3.3322045
## 2215                               1 4.828314 5.5053315 0.6931472
## 2216                               1 4.941642 4.8362819 1.0986123
## 2217                               1 4.787492 2.5649494 1.0986123
## 2218                               1 4.595120 1.3862944 1.6094379
## 2219                               1 5.703782 0.0000000 1.6094379
## 2220                               1 3.850148 4.1108739 1.0986123
## 2221                               2 4.744932 3.3672958 1.0986123
## 2222                               1 4.499810 1.3862944 0.6931472
## 2223                               1 5.293305 3.7376696 1.0986123
## 2224                               1 4.700480 4.4067192 1.0986123
## 2225                               1 4.605170 5.7300998 1.0986123
## 2226                               1 4.499810 4.3694479 2.6390573
## 2227                               4 3.688879 4.1896547 0.0000000
## 2228                               1 4.890349 2.9444390 2.6390573
## 2229                               1 4.867534 2.0794415 0.6931472
## 2230                               8 4.369448 2.4849066 3.4011974
## 2231                               1 5.298317 3.2580965 0.6931472
## 2232                               1 5.164786 2.9444390 1.0986123
## 2233                               1 5.298317 1.9459101 0.0000000
## 2234                               1 5.703782 3.5263605 1.6094379
## 2235                               1 4.905275 2.5649494 1.0986123
## 2236                               1 5.241747 5.1532916 1.0986123
## 2237                               1 4.174387 1.3862944 0.0000000
## 2238                               1 5.187386 3.2958369 1.3862944
## 2239                               1 4.499810 2.3978953 3.8066625
## 2240                               1 3.891820 2.1972246 0.0000000
## 2241                               1 4.941642 4.0943446 1.0986123
## 2242                               1 4.744932 4.2484952 0.6931472
## 2243                               1 5.247024 5.3981627 0.0000000
## 2244                               1 4.595120 5.1873858 1.6094379
## 2245                              52 4.700480 1.0986123 3.4011974
## 2246                               2 4.691348 5.6767538 0.6931472
## 2247                               1 4.158883 3.7376696 1.6094379
## 2248                              11 6.907755 3.1780538 3.4011974
## 2249                               2 6.620073 2.1972246 1.0986123
## 2250                               1 5.164786 0.6931472 1.9459101
## 2251                               5 3.850148 1.7917595 0.0000000
## 2252                               1 4.094345 4.9416424 1.0986123
## 2253                               1 3.871201 3.8286414 2.6390573
## 2254                               1 4.605170 3.9889840 0.0000000
## 2255                               1 4.653960 4.8441871 0.0000000
## 2256                               1 4.927254 0.0000000 1.9459101
## 2257                               1 4.859812 4.5643482 0.0000000
## 2258                               1 5.135798 1.3862944 3.4011974
## 2259                               2 4.934474 5.6489742 0.0000000
## 2260                               1 4.543295 3.4011974 0.0000000
## 2261                               1 4.744932 0.0000000 1.0986123
## 2262                               1 6.212606 4.8362819 0.6931472
## 2263                               1 4.369448 5.2882670 0.6931472
## 2264                               1 5.298317 3.2580965 1.3862944
## 2265                               1 5.023881 2.5649494 1.6094379
## 2266                               1 3.912023 2.3025851 3.4011974
## 2267                               1 5.356586 3.9318256 0.6931472
## 2268                               3 4.682131 1.3862944 2.6390573
## 2269                               1 4.488636 2.5649494 3.4011974
## 2270                               2 4.488636 5.6094718 0.0000000
## 2271                               1 4.174387 2.4849066 0.6931472
## 2272                               1 5.476464 1.0986123 1.3862944
## 2273                               2 4.595120 2.5649494 3.4011974
## 2274                               1 4.382027 4.0253517 0.6931472
## 2275                               1 4.007333 4.7535902 1.9459101
## 2276                               1 5.075174 3.4339872 0.6931472
## 2277                               1 4.605170 1.6094379 2.7080502
## 2278                               1 5.416100 4.9126549 0.6931472
## 2279                               1 5.616771 1.7917595 1.9459101
## 2280                               1 5.298317 4.3820266 0.6931472
## 2281                               1 5.247024 3.2188758 1.3862944
## 2282                               1 4.762174 3.7612001 0.6931472
## 2283                               1 4.382027 4.1896547 0.0000000
## 2284                               1 4.595120 4.5325995 0.0000000
## 2285                               1 4.248495 2.9444390 1.7917595
## 2286                               5 3.784190 0.6931472 3.4011974
## 2287                               1 4.828314 4.4426513 0.0000000
## 2288                               1 4.867534 3.4657359 0.6931472
## 2289                               1 4.867534 2.0794415 2.6390573
## 2290                               1 4.828314 5.4293456 0.6931472
## 2291                               1 5.293305 3.4011974 1.9459101
## 2292                               1 5.043425 4.8283137 1.3862944
## 2293                               1 5.513429 2.1972246 0.6931472
## 2294                               1 4.442651 3.7376696 1.3862944
## 2295                               1 4.442651 4.7706846 1.0986123
## 2296                               1 4.382027 3.6375862 1.0986123
## 2297                               4 4.369448 3.6375862 0.0000000
## 2298                               2 4.007333 5.4116461 0.0000000
## 2299                               1 4.174387 4.1588831 0.6931472
## 2300                               1 5.010635 1.9459101 4.0943446
## 2301                               1 5.652489 4.8202816 0.6931472
## 2302                               1 4.779123 2.3978953 1.9459101
## 2303                               1 4.919981 4.0775374 0.6931472
## 2304                               1 5.247024 5.2522734 0.6931472
## 2305                               1 4.382027 0.0000000 0.0000000
## 2306                               1 4.787492 5.0434251 1.0986123
## 2307                               1 4.553877 4.6539604 1.0986123
## 2308                               1 4.499810 3.4965076 0.0000000
## 2309                               1 4.317488 2.3978953 1.0986123
## 2310                               1 4.634729 1.6094379 2.0794415
## 2311                               1 4.828314 3.3322045 0.6931472
## 2312                               1 5.010635 5.3612922 0.6931472
## 2313                               1 4.997212 2.6390573 1.0986123
## 2314                               1 4.787492 2.3025851 3.3672958
## 2315                               2 4.595120 4.2195077 1.0986123
## 2316                               2 4.234107 4.6347290 0.6931472
## 2317                               1 5.298317 1.9459101 0.0000000
## 2318                               1 4.007333 1.3862944 1.6094379
## 2319                               1 5.164786 1.0986123 2.0794415
## 2320                               1 5.480639 4.3438054 1.3862944
## 2321                               2 4.553877 0.6931472 1.9459101
## 2322                               1 5.010635 4.6913479 0.0000000
## 2323                               1 5.010635 0.0000000 0.6931472
## 2324                               2 5.187386 4.9836066 1.0986123
## 2325                               2 4.653960 5.9242558 0.0000000
## 2326                               1 4.430817 3.8066625 3.8066625
## 2327                               3 4.499810 3.4965076 3.4011974
## 2328                               2 3.970292 1.9459101 1.9459101
## 2329                               5 3.713572 1.3862944 3.4011974
## 2330                               1 4.905275 2.8332133 0.0000000
## 2331                               2 4.430817 5.1474945 0.6931472
## 2332                               1 5.669881 3.0445224 0.0000000
## 2333                               4 3.555348 4.7004804 1.6094379
## 2334                               1 4.700480 3.1354942 1.0986123
## 2335                               2 5.857933 1.3862944 1.9459101
## 2336                               1 4.094345 2.5649494 1.0986123
## 2337                               1 5.616771 3.2958369 1.3862944
## 2338                               1 4.955827 1.7917595 1.9459101
## 2339                               2 3.637586 0.0000000 1.6094379
## 2340                               1 5.298317 3.9512437 0.6931472
## 2341                               1 5.416100 4.0253517 1.0986123
## 2342                               1 4.905275 5.2470241 0.0000000
## 2343                               1 4.276666 1.0986123 3.4011974
## 2344                               2 4.077537 2.5649494 1.0986123
## 2345                               1 5.857933 3.1354942 0.6931472
## 2346                               1 4.317488 2.0794415 0.6931472
## 2347                               2 4.248495 2.4849066 1.0986123
## 2348                               1 4.595120 1.3862944 3.4011974
## 2349                               2 3.737670 3.3322045 1.0986123
## 2350                               2 4.094345 2.3978953 0.6931472
## 2351                               1 4.828314 5.0304379 0.0000000
## 2352                               3 4.595120 4.9972123 1.7917595
## 2353                               1 4.595120 2.4849066 1.6094379
## 2354                               1 5.105945 4.8675345 1.0986123
## 2355                               1 5.521461 2.3978953 1.6094379
## 2356                               1 4.905275 2.4849066 1.3862944
## 2357                               1 4.060443 4.1896547 1.6094379
## 2358                               1 4.553877 5.2522734 1.0986123
## 2359                               1 4.828314 4.5217886 0.0000000
## 2360                               1 4.990433 3.7376696 1.9459101
## 2361                               1 5.703782 4.1896547 1.0986123
## 2362                               1 5.857933 1.3862944 2.6390573
## 2363                               1 4.624973 3.1780538 0.6931472
## 2364                               1 4.553877 5.3278762 1.6094379
## 2365                              15 4.174387 4.4426513 0.0000000
## 2366                               1 6.388561 4.6634391 1.0986123
## 2367                               1 5.105945 3.0445224 1.0986123
## 2368                               1 5.198497 5.0304379 1.0986123
## 2369                               1 4.700480 1.3862944 0.0000000
## 2370                              15 4.174387 4.7791235 0.0000000
## 2371                               1 5.043425 4.7361984 0.6931472
## 2372                               2 3.912023 0.0000000 3.4011974
## 2373                               1 4.442651 0.0000000 0.6931472
## 2374                               1 4.787492 1.7917595 1.6094379
## 2375                               1 4.317488 0.6931472 0.0000000
## 2376                              15 4.007333 4.8441871 0.0000000
## 2377                               1 5.298317 1.0986123 0.0000000
## 2378                               1 4.317488 2.3025851 1.9459101
## 2379                               3 5.010635 0.0000000 0.0000000
## 2380                               1 4.094345 4.9904326 0.6931472
## 2381                               1 5.010635 1.3862944 3.9120230
## 2382                               1 5.480639 4.3438054 0.0000000
## 2383                               1 5.010635 2.8903718 1.0986123
## 2384                               1 5.594711 2.8903718 1.6094379
## 2385                               2 4.718499 2.1972246 0.6931472
## 2386                               1 5.521461 3.8918203 1.6094379
## 2387                               1 5.857933 3.2958369 1.0986123
## 2388                               1 4.382027 4.2046926 1.0986123
## 2389                               3 5.686975 4.7361984 0.6931472
## 2390                               2 5.075174 0.0000000 3.4011974
## 2391                               1 5.988961 0.6931472 0.6931472
## 2392                               1 5.010635 2.7725887 2.4849066
## 2393                              15 4.094345 4.9558271 0.0000000
## 2394                               1 5.389072 3.8066625 1.7917595
## 2395                               2 4.779123 4.6634391 1.3862944
## 2396                               1 5.247024 0.0000000 1.3862944
## 2397                               1 4.941642 4.4998097 1.6094379
## 2398                               1 4.828314 1.3862944 0.6931472
## 2399                               1 4.969813 3.2958369 1.3862944
## 2400                               1 4.605170 4.6249728 0.0000000
## 2401                               2 4.744932 4.0430513 0.6931472
## 2402                               1 7.549083 2.8903718 1.9459101
## 2403                               1 4.700480 2.3025851 3.3672958
## 2404                               1 4.941642 3.9318256 2.6390573
## 2405                               1 4.543295 0.0000000 0.6931472
## 2406                               1 3.912023 3.8918203 0.0000000
## 2407                               1 4.875197 4.2195077 1.3862944
## 2408                               2 5.164786 1.6094379 0.6931472
## 2409                               1 5.700444 1.3862944 1.0986123
## 2410                               1 4.976734 2.4849066 3.4011974
## 2411                               1 4.976734 4.1588831 0.6931472
## 2412                               1 5.164786 0.6931472 0.6931472
## 2413                               1 4.691348 1.6094379 1.6094379
## 2414                               1 5.010635 3.3322045 0.0000000
## 2415                               2 5.988961 4.6821312 1.0986123
## 2416                               1 3.871201 1.3862944 3.2188758
## 2417                               8 4.317488 4.2904594 1.0986123
## 2418                               2 4.007333 1.0986123 0.0000000
## 2419                               4 4.317488 4.6728288 1.0986123
## 2420                               1 6.142037 2.3978953 3.4011974
## 2421                               1 5.017280 5.1532916 0.0000000
## 2422                               1 5.293305 1.7917595 1.0986123
## 2423                              15 3.806662 4.7621739 0.0000000
## 2424                               1 5.075174 3.1780538 1.0986123
## 2425                               5 3.583519 5.1532916 0.0000000
## 2426                               1 5.459586 2.3025851 0.6931472
## 2427                               1 5.416100 1.6094379 1.3862944
## 2428                               1 5.703782 2.9444390 1.0986123
## 2429                               4 3.555348 4.7874917 1.6094379
## 2430                               1 4.382027 3.7841896 4.2484952
## 2431                               1 4.369448 4.1108739 0.6931472
## 2432                               2 4.406719 1.7917595 0.0000000
## 2433                               2 4.406719 1.6094379 0.0000000
## 2434                               4 5.370638 0.6931472 1.0986123
## 2435                               2 4.990433 2.6390573 1.0986123
## 2436                               1 4.976734 3.2580965 0.6931472
## 2437                               1 4.174387 4.2766661 1.0986123
## 2438                               3 4.356709 3.1780538 1.0986123
## 2439                               1 4.787492 0.6931472 1.0986123
## 2440                               2 4.787492 2.5649494 1.0986123
## 2441                               1 4.553877 4.4543473 0.0000000
## 2442                               3 4.499810 4.7449321 0.0000000
## 2443                               1 4.553877 2.3978953 3.2188758
## 2444                               1 4.605170 3.7135721 1.9459101
## 2445                               1 5.857933 1.0986123 1.7917595
## 2446                               1 5.236442 3.6375862 1.0986123
## 2447                               1 4.382027 1.6094379 0.0000000
## 2448                               1 5.164786 1.6094379 1.3862944
## 2449                               1 6.204558 1.3862944 1.9459101
## 2450                               1 5.521461 5.0434251 1.0986123
## 2451                               1 4.744932 1.0986123 1.9459101
## 2452                              15 4.007333 4.3174881 0.0000000
## 2453                              19 4.532599 3.2188758 3.6635616
## 2454                              19 4.532599 3.5263605 4.7874917
## 2455                               1 5.293305 3.5553481 1.0986123
## 2456                               1 4.248495 1.7917595 0.6931472
## 2457                              52 4.828314 0.6931472 3.4011974
## 2458                               1 5.129899 2.3978953 1.9459101
## 2459                               1 5.010635 3.1780538 0.6931472
## 2460                               1 4.110874 4.4543473 0.0000000
## 2461                               2 3.688879 2.6390573 1.9459101
## 2462                               1 5.010635 3.9512437 1.0986123
## 2463                               1 4.174387 2.6390573 0.6931472
## 2464                               3 5.247024 4.8121844 1.0986123
## 2465                               1 4.369448 2.3978953 0.6931472
## 2466                               1 5.416100 5.4380793 1.0986123
## 2467                               3 5.220356 4.9487599 1.0986123
## 2468                               1 4.605170 2.0794415 0.6931472
## 2469                               1 4.442651 4.9836066 0.6931472
## 2470                               1 4.317488 2.9957323 0.6931472
## 2471                               1 4.442651 0.6931472 1.0986123
## 2472                               1 4.584967 4.9698133 1.0986123
## 2473                               1 5.568345 0.0000000 3.4011974
## 2474                               1 4.976734 3.4011974 0.6931472
## 2475                               1 5.634790 1.9459101 0.6931472
## 2476                               1 5.347108 2.3978953 1.6094379
## 2477                               1 4.248495 0.6931472 2.7080502
## 2478                               4 4.605170 5.0875963 1.0986123
## 2479                               1 4.077537 4.8121844 0.0000000
## 2480                               1 5.293305 4.9487599 0.0000000
## 2481                               5 5.389072 4.3567088 0.0000000
## 2482                               2 4.605170 4.5643482 0.0000000
## 2483                               1 5.164786 4.0604430 3.4011974
## 2484                               2 5.393628 0.6931472 0.0000000
## 2485                               4 3.688879 4.5108595 3.3322045
## 2486                               1 4.941642 3.1780538 0.6931472
## 2487                               2 4.653960 2.7725887 0.0000000
## 2488                               1 4.700480 1.7917595 2.3025851
## 2489                               1 4.875197 4.9416424 1.9459101
## 2490                               1 5.579730 4.5538769 1.3862944
## 2491                               1 3.988984 1.6094379 3.4011974
## 2492                               2 6.684612 0.6931472 0.0000000
## 2493                               3 3.970292 5.5012582 0.0000000
## 2494                               1 4.595120 1.6094379 1.0986123
## 2495                               1 4.174387 3.6635616 1.6094379
## 2496                               2 4.787492 4.4998097 1.0986123
## 2497                               1 5.129899 1.0986123 4.7874917
## 2498                               1 5.192957 3.3322045 1.3862944
## 2499                               1 4.204693 0.6931472 1.9459101
## 2500                               2 4.709530 4.3438054 0.6931472
## 2501                               1 4.499810 4.3438054 0.0000000
## 2502                               1 5.556828 0.6931472 0.0000000
## 2503                               2 4.488636 5.4424177 1.0986123
## 2504                              52 4.859812 1.9459101 3.4011974
## 2505                               1 4.234107 4.5849675 0.6931472
## 2506                               3 4.317488 2.6390573 1.3862944
## 2507                               1 5.521461 3.2188758 1.6094379
## 2508                               2 4.787492 5.4205350 0.0000000
## 2509                              52 4.859812 1.7917595 3.4011974
## 2510                               1 5.293305 3.4965076 3.3322045
## 2511                               1 6.109248 4.4067192 1.0986123
## 2512                               1 5.857933 3.9702919 1.0986123
## 2513                               1 5.075174 2.3025851 3.1780538
## 2514                               2 3.806662 1.9459101 1.3862944
## 2515                               5 4.248495 3.9889840 1.0986123
## 2516                               2 5.560682 5.7683210 0.0000000
## 2517                               1 4.605170 0.6931472 3.4011974
## 2518                               1 4.828314 3.1354942 1.0986123
## 2519                               2 5.273000 5.3936275 0.6931472
## 2520                               1 4.060443 3.4339872 1.6094379
## 2521                               1 4.317488 1.0986123 1.6094379
## 2522                               1 5.298317 4.2195077 1.3862944
## 2523                               5 4.317488 3.4965076 0.6931472
## 2524                               5 4.553877 3.7841896 0.6931472
## 2525                               1 4.595120 5.2417470 0.6931472
## 2526                               1 5.616771 2.9957323 1.0986123
## 2527                               1 5.087596 2.3978953 0.6931472
## 2528                               1 5.652489 2.3978953 1.6094379
## 2529                               2 4.787492 4.1588831 1.9459101
## 2530                               2 4.787492 4.3307333 0.0000000
## 2531                               5 5.347108 4.9416424 0.6931472
## 2532                               1 5.075174 3.2188758 3.4011974
## 2533                               2 4.700480 0.0000000 1.7917595
## 2534                               1 4.927254 1.3862944 0.0000000
## 2535                               1 4.499810 1.6094379 1.0986123
## 2536                               1 3.806662 3.0445224 3.4011974
## 2537                               1 4.382027 2.8903718 3.4011974
## 2538                               1 4.276666 3.7135721 1.9459101
## 2539                               1 4.553877 5.1474945 2.6390573
## 2540                               1 4.317488 2.5649494 1.6094379
## 2541                               1 4.248495 4.3174881 2.9957323
## 2542                               1 5.075174 0.0000000 1.7917595
## 2543                               1 3.367296 1.6094379 0.6931472
## 2544                               1 5.164786 4.1271344 1.0986123
## 2545                               1 4.700480 1.9459101 1.0986123
## 2546                               1 5.164786 5.2933048 1.0986123
## 2547                               2 4.595120 4.8121844 0.0000000
## 2548                               1 4.605170 1.9459101 0.6931472
## 2549                               1 4.969813 1.0986123 1.6094379
## 2550                               3 5.141664 3.5263605 0.6931472
## 2551                               8 4.595120 3.1354942 3.4011974
## 2552                               1 5.598422 1.3862944 0.0000000
## 2553                               1 5.075174 5.3936275 1.0986123
## 2554                               1 4.174387 3.6888795 1.9459101
## 2555                               1 4.595120 5.3375381 1.0986123
## 2556                               1 4.828314 5.4467374 1.0986123
## 2557                               2 5.703782 2.7725887 0.6931472
## 2558                               1 4.718499 5.2781147 0.0000000
## 2559                               1 4.605170 1.3862944 3.4011974
## 2560                               2 4.094345 4.1588831 0.6931472
## 2561                               1 5.446737 0.6931472 2.3025851
## 2562                               1 4.941642 5.0039463 0.6931472
## 2563                               1 8.517193 0.6931472 0.0000000
## 2564                               1 5.123964 0.0000000 0.6931472
## 2565                               1 4.605170 3.8918203 3.4011974
## 2566                               1 4.553877 3.0445224 1.3862944
## 2567                               1 5.164786 0.0000000 0.6931472
## 2568                               1 5.393628 2.5649494 0.6931472
## 2569                               1 5.181784 4.8828019 3.4657359
## 2570                               1 4.442651 4.2046926 0.6931472
## 2571                               1 3.555348 4.3307333 1.3862944
## 2572                              52 4.859812 1.7917595 3.4011974
## 2573                              10 4.007333 5.1179938 0.0000000
## 2574                               3 4.234107 3.5263605 1.3862944
## 2575                               2 4.219508 2.3978953 1.0986123
## 2576                               1 4.234107 4.4998097 0.6931472
## 2577                               1 5.703782 3.1354942 0.6931472
## 2578                               3 5.164786 5.0238805 0.0000000
## 2579                               5 4.077537 5.2470241 0.0000000
## 2580                               5 4.077537 2.9444390 0.0000000
## 2581                               2 5.129899 3.4965076 0.6931472
## 2582                               1 4.787492 0.0000000 0.6931472
## 2583                               1 5.043425 5.4249500 1.0986123
## 2584                               1 5.105945 4.3820266 0.6931472
## 2585                               4 4.094345 4.8283137 0.6931472
## 2586                               2 5.247024 2.3025851 1.0986123
## 2587                               1 5.010635 1.0986123 1.6094379
## 2588                               2 5.010635 2.8903718 3.4011974
## 2589                               1 4.787492 3.2580965 1.3862944
## 2590                               2 5.855072 3.2580965 0.0000000
## 2591                               5 4.077537 2.6390573 0.0000000
## 2592                               1 4.595120 4.1271344 0.6931472
## 2593                               5 4.077537 3.4657359 0.0000000
## 2594                               1 4.700480 3.1354942 1.0986123
## 2595                               1 4.290459 2.3978953 2.4849066
## 2596                               1 5.187386 5.3033049 1.0986123
## 2597                               1 4.624973 2.0794415 1.6094379
## 2598                               8 4.127134 4.5538769 1.0986123
## 2599                               1 4.941642 2.5649494 0.6931472
## 2600                               2 5.703782 1.7917595 2.7080502
## 2601                               1 5.700444 3.2580965 0.6931472
## 2602                               1 4.644391 2.3978953 2.4849066
## 2603                              19 4.584967 3.6375862 4.7874917
## 2604                               1 3.891820 4.4998097 0.0000000
## 2605                              19 4.564348 3.8066625 4.7449321
## 2606                               1 4.382027 4.8675345 1.0986123
## 2607                               1 4.488636 4.9904326 1.0986123
## 2608                               1 4.828314 0.0000000 0.0000000
## 2609                               1 5.843544 4.3567088 0.6931472
## 2610                               1 5.010635 2.8332133 1.0986123
## 2611                               2 4.605170 2.7080502 0.6931472
## 2612                               1 4.787492 2.1972246 1.6094379
## 2613                              52 5.003946 2.1972246 3.4011974
## 2614                               1 4.976734 2.8903718 1.3862944
## 2615                               1 5.966147 0.0000000 1.0986123
## 2616                               2 4.094345 2.9444390 3.0445224
## 2617                               1 5.247024 2.8332133 1.0986123
## 2618                               3 4.382027 3.9318256 1.0986123
## 2619                              15 4.007333 5.0875963 0.0000000
## 2620                               1 5.616771 5.2729996 0.6931472
## 2621                               1 5.521461 4.4659081 0.0000000
## 2622                               2 4.605170 5.6021188 0.6931472
## 2623                               1 6.396930 1.9459101 1.3862944
## 2624                               1 4.189655 1.3862944 0.6931472
## 2625                               2 4.174387 4.0604430 1.9459101
## 2626                               1 5.393628 4.0943446 1.3862944
## 2627                               1 5.068904 4.7361984 0.6931472
## 2628                               2 4.248495 3.4339872 0.6931472
## 2629                               3 3.891820 4.4308168 1.6094379
## 2630                               1 3.850148 3.0445224 1.6094379
## 2631                               4 5.700444 5.2983174 0.0000000
## 2632                               1 4.369448 2.9444390 1.9459101
## 2633                               1 4.744932 2.4849066 1.3862944
## 2634                               1 5.433722 3.6375862 1.0986123
## 2635                               1 4.744932 1.0986123 1.6094379
## 2636                               2 7.003065 2.8332133 0.6931472
## 2637                               1 5.105945 2.3025851 1.3862944
## 2638                               1 4.204693 2.3025851 1.7917595
## 2639                               3 4.219508 3.9512437 1.0986123
## 2640                               2 4.442651 0.0000000 1.0986123
## 2641                               3 5.135798 4.8978398 1.0986123
## 2642                               3 4.553877 3.8286414 1.0986123
## 2643                               1 3.806662 0.6931472 1.0986123
## 2644                               1 5.181784 0.6931472 0.6931472
## 2645                               1 4.941642 3.9120230 1.6094379
## 2646                              52 5.003946 1.9459101 3.4011974
## 2647                               1 4.488636 4.4543473 1.0986123
## 2648                               1 4.682131 1.0986123 1.3862944
## 2649                               1 4.927254 2.6390573 1.9459101
## 2650                               1 4.744932 4.7957905 0.6931472
## 2651                               4 4.234107 4.9126549 0.0000000
## 2652                               1 5.594711 4.2195077 0.6931472
## 2653                               2 5.075174 2.5649494 3.4011974
## 2654                               1 5.010635 0.6931472 0.0000000
## 2655                               1 4.795791 4.3307333 1.9459101
## 2656                               1 4.553877 3.0910425 1.9459101
## 2657                               5 4.595120 4.1896547 1.0986123
## 2658                               1 3.688879 4.2904594 0.0000000
## 2659                               3 4.488636 3.1354942 3.3322045
## 2660                               2 3.912023 2.3978953 0.6931472
## 2661                              15 4.007333 4.8362819 0.0000000
## 2662                               1 5.411646 5.4337220 0.6931472
## 2663                               1 4.787492 0.6931472 0.6931472
## 2664                               2 4.077537 4.7535902 0.0000000
## 2665                               4 4.905275 5.1761497 3.4339872
## 2666                               1 5.164786 4.6539604 1.0986123
## 2667                               1 5.521461 5.2149358 1.0986123
## 2668                               1 5.049856 3.4339872 0.6931472
## 2669                               1 4.317488 3.5835189 0.6931472
## 2670                               1 4.369448 2.1972246 1.6094379
## 2671                               8 4.644391 3.2958369 3.4011974
## 2672                               1 5.634790 4.8202816 0.0000000
## 2673                               1 4.382027 4.8751973 1.3862944
## 2674                               1 4.912655 3.9120230 3.4011974
## 2675                               1 6.309918 2.8332133 1.3862944
## 2676                               2 5.247024 4.5538769 0.6931472
## 2677                               1 5.293305 3.3672958 0.6931472
## 2678                               1 4.317488 3.2188758 0.6931472
## 2679                               1 4.605170 5.3565863 0.0000000
## 2680                               1 4.828314 2.7080502 0.0000000
## 2681                               1 4.317488 2.4849066 0.6931472
## 2682                               1 4.595120 3.4011974 0.6931472
## 2683                               1 3.555348 1.6094379 3.4011974
## 2684                               1 3.931826 5.1059455 0.0000000
## 2685                               1 5.236442 5.5606816 0.6931472
## 2686                               1 4.499810 0.6931472 1.9459101
## 2687                               1 5.631212 2.1972246 1.0986123
## 2688                               1 5.857933 2.1972246 1.3862944
## 2689                               1 4.828314 4.0775374 0.6931472
## 2690                               3 4.442651 3.6375862 1.3862944
## 2691                               2 3.871201 3.4965076 2.9957323
## 2692                               2 4.025352 2.6390573 3.3322045
## 2693                               3 4.430817 4.2195077 0.6931472
## 2694                               2 5.043425 4.8121844 0.0000000
## 2695                               1 5.703782 3.4339872 1.6094379
## 2696                               1 4.941642 0.0000000 0.0000000
## 2697                               2 4.787492 2.9444390 1.9459101
## 2698                               2 4.595120 5.2882670 0.6931472
## 2699                               1 5.480639 2.9444390 1.9459101
## 2700                               1 4.276666 3.2958369 1.9459101
## 2701                               1 3.806662 4.2195077 1.3862944
## 2702                               3 5.521461 0.0000000 3.4011974
## 2703                               1 4.605170 3.8712010 0.6931472
## 2704                               1 5.164786 4.7535902 1.6094379
## 2705                               1 5.298317 2.3025851 1.6094379
## 2706                               5 4.077537 2.0794415 0.0000000
## 2707                               1 6.040255 5.6524892 0.6931472
## 2708                               1 4.787492 4.9558271 1.0986123
## 2709                               1 5.686975 1.0986123 3.4011974
## 2710                               1 5.298317 2.4849066 4.7874917
## 2711                               1 3.871201 4.1108739 1.9459101
## 2712                               1 4.595120 4.0073332 0.6931472
## 2713                              52 4.859812 2.0794415 3.4011974
## 2714                               2 5.075174 3.7841896 0.6931472
## 2715                               1 4.955827 3.7135721 1.3862944
## 2716                               2 4.787492 2.4849066 1.0986123
## 2717                               1 4.867534 3.2580965 1.9459101
## 2718                               1 4.442651 3.6375862 1.0986123
## 2719                               1 6.396930 3.8712010 0.0000000
## 2720                               2 4.234107 5.0238805 1.6094379
## 2721                               1 5.010635 0.0000000 1.0986123
## 2722                               1 4.465908 1.3862944 0.0000000
## 2723                               2 5.517453 0.0000000 1.0986123
## 2724                               1 4.174387 4.9558271 1.3862944
## 2725                               1 5.164786 5.0625950 1.0986123
## 2726                               3 4.369448 4.7184989 1.6094379
## 2727                               2 5.267858 4.9487599 0.6931472
## 2728                               1 5.010635 2.9444390 1.0986123
## 2729                               1 5.484797 0.0000000 0.6931472
## 2730                               1 4.382027 4.2904594 0.0000000
## 2731                               1 4.787492 4.2766661 1.3862944
## 2732                               1 5.043425 2.5649494 1.3862944
## 2733                               1 5.010635 3.6888795 1.9459101
## 2734                               1 4.941642 3.5835189 1.7917595
## 2735                               1 4.499810 1.6094379 0.0000000
## 2736                               3 5.010635 4.5432948 1.0986123
## 2737                               1 4.905275 4.8441871 0.6931472
## 2738                               1 4.941642 3.8066625 0.6931472
## 2739                               2 4.867534 5.3936275 1.0986123
## 2740                               1 5.010635 4.7957905 0.6931472
## 2741                               1 4.744932 5.2203558 1.0986123
## 2742                               2 4.867534 5.4337220 1.0986123
## 2743                               1 5.940171 3.3672958 1.7917595
## 2744                               1 4.744932 0.0000000 2.9957323
## 2745                               1 4.828314 3.0445224 0.6931472
## 2746                               1 4.174387 0.0000000 1.6094379
## 2747                               1 4.700480 2.3978953 2.1972246
## 2748                               3 3.433987 3.7135721 1.7917595
## 2749                               2 4.905275 5.1532916 1.0986123
## 2750                               1 5.298317 2.9957323 1.0986123
## 2751                               3 5.356586 0.0000000 1.0986123
## 2752                               3 3.688879 3.5263605 0.0000000
## 2753                               7 4.382027 2.4849066 3.4011974
## 2754                               3 4.553877 4.9904326 0.6931472
## 2755                              39 5.220356 1.9459101 3.4011974
## 2756                               4 4.605170 4.0775374 0.0000000
## 2757                              52 5.003946 2.1972246 3.4011974
## 2758                               2 4.934474 5.3132060 0.0000000
## 2759                               1 5.420535 3.2188758 1.0986123
## 2760                               2 4.304065 5.2417470 0.6931472
## 2761                               1 5.273000 3.9512437 1.6094379
## 2762                               1 4.644391 3.8712010 4.0775374
## 2763                               1 5.616771 1.7917595 0.6931472
## 2764                               1 5.736572 2.4849066 1.3862944
## 2765                               1 4.976734 1.0986123 3.3672958
## 2766                               1 4.317488 2.9444390 1.0986123
## 2767                               2 4.595120 5.3033049 0.6931472
## 2768                               1 5.521461 4.3694479 1.7917595
## 2769                               8 4.644391 3.1780538 3.4011974
## 2770                               1 5.521461 1.6094379 1.6094379
## 2771                              39 5.010635 2.8903718 3.4011974
## 2772                              39 5.273000 2.8332133 3.4011974
## 2773                              39 5.857933 2.6390573 3.4011974
## 2774                               1 4.317488 3.1354942 0.0000000
## 2775                               1 4.382027 3.3322045 3.4339872
## 2776                               1 4.564348 2.6390573 0.6931472
## 2777                               1 4.499810 4.9344739 1.0986123
## 2778                               3 4.369448 5.6131281 0.0000000
## 2779                               1 5.411646 2.6390573 3.4339872
## 2780                               2 3.555348 5.3033049 0.6931472
## 2781                               1 4.248495 3.5263605 1.9459101
## 2782                              10 4.442651 3.6888795 0.0000000
## 2783                               2 4.700480 4.8520303 3.4011974
## 2784                               2 4.174387 0.6931472 1.0986123
## 2785                               2 5.298317 3.1780538 1.3862944
## 2786                               1 5.517453 1.7917595 3.4339872
## 2787                               8 4.127134 3.9512437 1.0986123
## 2788                               1 3.912023 2.9444390 0.0000000
## 2789                               8 4.127134 3.8712010 1.0986123
## 2790                               3 3.912023 2.5649494 0.6931472
## 2791                               2 4.262680 4.1588831 0.6931472
## 2792                               1 4.317488 3.6109179 0.0000000
## 2793                               1 4.744932 4.9836066 1.0986123
## 2794                               1 4.406719 4.9698133 0.6931472
## 2795                               8 4.317488 3.5263605 1.0986123
## 2796                               1 4.094345 4.6151205 1.0986123
## 2797                               1 5.298317 2.3978953 1.9459101
## 2798                               1 5.370638 4.0775374 1.0986123
## 2799                               1 4.605170 5.4971682 0.6931472
## 2800                               1 3.637586 1.9459101 3.4011974
## 2801                               4 5.068904 2.3978953 1.0986123
## 2802                               2 4.158883 4.6821312 0.6931472
## 2803                               1 4.828314 3.9702919 2.7080502
## 2804                               1 4.787492 5.2040067 1.3862944
## 2805                               1 4.330733 5.0998664 1.0986123
## 2806                               1 5.164786 1.3862944 0.6931472
## 2807                               1 4.700480 1.9459101 1.6094379
## 2808                               2 4.317488 4.2341065 0.0000000
## 2809                               2 4.382027 3.3322045 0.6931472
## 2810                               1 4.700480 0.6931472 1.3862944
## 2811                               2 4.488636 5.3659760 0.0000000
## 2812                               1 4.700480 3.1354942 1.0986123
## 2813                               1 4.564348 5.6131281 0.0000000
## 2814                               2 4.317488 3.4339872 1.6094379
## 2815                               1 5.220356 4.1743873 1.0986123
## 2816                               1 3.891820 3.1354942 0.6931472
## 2817                               1 6.086775 1.7917595 1.0986123
## 2818                               2 5.393628 2.8903718 1.9459101
## 2819                               2 4.595120 2.3978953 1.3862944
## 2820                               1 4.442651 4.9052748 0.0000000
## 2821                               1 4.584967 1.9459101 1.9459101
## 2822                              10 4.430817 4.0943446 0.0000000
## 2823                              10 4.174387 3.6375862 0.0000000
## 2824                               1 5.075174 2.9444390 0.6931472
## 2825                               1 4.744932 5.2983174 1.0986123
## 2826                               2 4.077537 3.4011974 2.6390573
## 2827                               1 4.779123 3.2958369 0.6931472
## 2828                               1 4.787492 4.5217886 0.6931472
## 2829                               2 6.084499 4.3694479 1.6094379
## 2830                               2 4.595120 2.9957323 0.0000000
## 2831                               1 5.293305 3.2188758 0.6931472
## 2832                               2 4.595120 5.8289456 0.0000000
## 2833                               1 5.273000 5.4424177 1.0986123
## 2834                               1 5.192957 5.2094862 3.4011974
## 2835                               1 4.605170 3.9512437 2.9957323
## 2836                               2 4.744932 5.3471075 0.6931472
## 2837                               1 4.744932 0.6931472 3.4011974
## 2838                               1 5.192957 2.8903718 1.0986123
## 2839                               1 3.806662 3.9702919 1.0986123
## 2840                               1 5.703782 4.1743873 0.6931472
## 2841                               1 4.499810 2.9957323 4.3820266
## 2842                               1 4.941642 3.6888795 0.6931472
## 2843                               1 4.812184 2.6390573 1.6094379
## 2844                               1 5.298317 4.7791235 0.6931472
## 2845                               2 4.605170 1.3862944 1.0986123
## 2846                               1 5.521461 4.9698133 1.0986123
## 2847                               3 4.442651 5.3981627 0.0000000
## 2848                               1 4.605170 1.0986123 1.0986123
## 2849                               1 4.691348 3.2580965 0.6931472
## 2850                              52 5.068904 1.7917595 3.4011974
## 2851                               1 5.560682 2.5649494 1.6094379
## 2852                               1 6.318968 4.7095302 1.0986123
## 2853                               1 4.465908 5.4595855 0.6931472
## 2854                               1 3.761200 2.3978953 0.6931472
## 2855                               5 5.293305 3.3672958 0.0000000
## 2856                               3 4.499810 2.8332133 0.6931472
## 2857                               1 5.273000 4.3567088 1.0986123
## 2858                               3 5.220356 4.7449321 1.0986123
## 2859                               1 5.991465 2.9444390 1.9459101
## 2860                               1 5.298317 4.9698133 0.6931472
## 2861                               2 4.605170 3.7135721 0.0000000
## 2862                               1 5.416100 2.3025851 1.3862944
## 2863                               3 6.109248 2.1972246 0.0000000
## 2864                               2 4.382027 4.7184989 1.0986123
## 2865                               2 4.488636 4.8121844 1.3862944
## 2866                               1 5.187386 4.8441871 1.3862944
## 2867                               1 4.499810 1.7917595 1.0986123
## 2868                               2 3.555348 1.0986123 0.6931472
## 2869                               1 4.454347 4.6728288 0.6931472
## 2870                               2 4.553877 3.7135721 0.0000000
## 2871                               1 4.753590 3.7612001 0.0000000
## 2872                               2 4.382027 4.1271344 1.6094379
## 2873                               2 4.700480 5.4510385 0.0000000
## 2874                               3 3.367296 5.9558374 0.6931472
## 2875                               1 5.298317 4.3040651 4.0943446
## 2876                               2 5.966147 4.6821312 1.6094379
## 2877                               1 4.007333 5.3230100 0.0000000
## 2878                               5 4.317488 4.1431347 1.6094379
## 2879                               2 4.787492 3.6635616 1.9459101
## 2880                               1 4.962845 3.6109179 0.6931472
## 2881                               1 5.521461 0.0000000 1.0986123
## 2882                               2 4.595120 2.9444390 1.0986123
## 2883                               1 5.010635 3.9120230 1.0986123
## 2884                               1 4.007333 2.9957323 2.3025851
## 2885                               1 5.164786 4.4426513 0.6931472
## 2886                               3 4.234107 4.9558271 0.0000000
## 2887                               1 5.214936 3.0910425 1.3862944
## 2888                               1 4.976734 1.7917595 0.6931472
## 2889                               1 4.605170 5.3471075 1.0986123
## 2890                               3 3.784190 4.3694479 1.6094379
## 2891                               1 5.416100 2.3025851 1.0986123
## 2892                               1 5.293305 0.6931472 0.6931472
## 2893                               1 4.094345 4.0430513 0.0000000
## 2894                               1 5.164786 5.5529596 1.0986123
## 2895                               1 5.293305 1.3862944 1.6094379
## 2896                               1 4.174387 2.3025851 0.0000000
## 2897                               1 5.247024 2.3978953 0.6931472
## 2898                               1 4.672829 4.9628446 1.0986123
## 2899                               1 5.010635 3.2580965 0.0000000
## 2900                              13 4.317488 3.4657359 0.6931472
## 2901                               2 3.806662 2.6390573 0.6931472
## 2902                               1 5.187386 2.7080502 0.6931472
## 2903                               2 4.700480 4.5217886 0.0000000
## 2904                               1 5.501258 2.6390573 0.6931472
## 2905                               1 6.683361 3.6888795 1.7917595
## 2906                               1 4.605170 2.4849066 0.6931472
## 2907                              15 4.110874 4.2626799 0.0000000
## 2908                               1 5.616771 2.7725887 1.6094379
## 2909                               1 5.521461 4.8978398 1.3862944
## 2910                               1 4.787492 0.6931472 1.0986123
## 2911                               1 4.905275 5.2470241 1.0986123
## 2912                               1 5.293305 1.3862944 2.3025851
## 2913                               5 4.317488 2.9444390 0.0000000
## 2914                               5 4.317488 3.4011974 1.9459101
## 2915                               3 4.317488 3.0910425 1.0986123
## 2916                               1 4.499810 4.4188406 3.4011974
## 2917                               1 4.382027 0.0000000 0.0000000
## 2918                               1 4.744932 0.6931472 0.6931472
## 2919                               3 4.094345 4.5325995 0.0000000
## 2920                               1 5.164786 3.2188758 0.6931472
## 2921                               2 4.828314 5.4806389 0.6931472
## 2922                               1 5.220356 4.3820266 0.0000000
## 2923                               2 4.025352 4.3820266 1.6094379
## 2924                               1 4.158883 5.8171112 0.0000000
## 2925                               1 5.703782 2.3025851 0.6931472
## 2926                               2 6.120297 4.5325995 3.4011974
## 2927                               5 3.610918 3.9889840 1.6094379
## 2928                               2 5.262690 5.0998664 1.0986123
## 2929                               1 3.970292 3.5553481 1.0986123
## 2930                               1 5.081404 2.0794415 0.6931472
## 2931                               1 4.595120 1.0986123 1.9459101
## 2932                               3 6.040255 3.9702919 0.0000000
## 2933                               4 5.273000 4.6443909 3.4011974
## 2934                               1 4.394449 3.5835189 0.0000000
## 2935                               2 4.174387 2.1972246 1.9459101
## 2936                               1 4.248495 1.0986123 1.0986123
## 2937                               1 5.991465 3.6888795 0.6931472
## 2938                               1 5.135798 4.1108739 1.0986123
## 2939                               2 5.164786 3.9702919 0.6931472
## 2940                               1 3.713572 1.9459101 1.0986123
## 2941                               1 5.003946 3.5553481 1.3862944
## 2942                               2 4.465908 4.4426513 1.0986123
## 2943                              19 4.521789 2.5649494 4.7004804
## 2944                               1 5.703782 2.6390573 1.6094379
## 2945                               1 4.934474 3.2958369 1.6094379
## 2946                               3 4.499810 2.4849066 1.0986123
## 2947                               1 4.770685 3.9318256 1.6094379
## 2948                               1 4.828314 5.7651911 0.0000000
## 2949                               2 4.804021 4.8040210 1.9459101
## 2950                               1 5.634790 3.0445224 1.0986123
## 2951                               2 5.370638 4.8675345 1.3862944
## 2952                               1 4.488636 3.8501476 4.4998097
## 2953                               2 4.867534 0.0000000 0.0000000
## 2954                               1 5.303305 2.0794415 0.6931472
## 2955                               1 4.779123 3.1354942 0.6931472
## 2956                               1 4.634729 3.3672958 0.6931472
## 2957                               1 4.276666 5.1119878 0.6931472
## 2958                               1 5.129899 2.1972246 1.6094379
## 2959                               1 5.480639 4.0943446 1.0986123
## 2960                               1 5.192957 3.3672958 0.6931472
## 2961                               2 5.010635 4.6821312 1.9459101
## 2962                               1 4.787492 1.3862944 1.6094379
## 2963                               2 5.843544 5.1984970 1.0986123
## 2964                               1 4.553877 4.8978398 1.0986123
## 2965                               1 5.010635 3.3672958 1.6094379
## 2966                               1 4.553877 4.5747110 1.0986123
## 2967                               1 4.499810 4.1108739 0.0000000
## 2968                               1 5.416100 2.3025851 1.0986123
## 2969                               1 5.480639 1.7917595 1.6094379
## 2970                               1 5.010635 3.7612001 1.3862944
## 2971                               1 3.784190 4.3694479 1.0986123
## 2972                               1 5.700444 3.6375862 1.3862944
## 2973                               1 4.787492 4.5325995 0.0000000
## 2974                               1 6.263398 3.7376696 1.6094379
## 2975                               1 6.396930 3.8286414 1.0986123
## 2976                               2 4.477337 5.3936275 0.0000000
## 2977                               1 5.298317 0.6931472 0.6931472
## 2978                               1 4.605170 2.9444390 0.6931472
## 2979                               1 5.342334 1.9459101 0.6931472
## 2980                               1 5.480639 2.6390573 1.0986123
## 2981                               2 4.499810 2.0794415 1.9459101
## 2982                               3 4.290459 4.5747110 0.6931472
## 2983                               1 4.499810 1.3862944 1.7917595
## 2984                               1 5.298317 1.7917595 0.6931472
## 2985                               1 4.543295 3.8286414 2.9957323
## 2986                               1 5.293305 5.4806389 0.6931472
## 2987                               1 4.442651 4.8978398 1.0986123
## 2988                               1 5.273000 3.4339872 1.3862944
## 2989                               1 5.153292 4.9628446 1.6094379
## 2990                              52 5.068904 1.6094379 3.4011974
## 2991                               1 4.442651 4.5217886 1.0986123
## 2992                               1 4.787492 5.3327188 1.0986123
## 2993                               1 5.416100 0.0000000 1.0986123
## 2994                               2 5.164786 4.7095302 0.6931472
## 2995                               1 4.867534 4.8520303 0.6931472
## 2996                               5 3.637586 4.2766661 1.6094379
## 2997                               1 3.970292 3.6375862 0.0000000
## 2998                               1 4.828314 4.6821312 1.3862944
## 2999                               5 3.465736 4.4426513 1.6094379
## 3000                               1 5.075174 5.0625950 1.0986123
## 3001                               3 4.060443 5.4638318 0.0000000
## 3002                               1 5.003946 2.9957323 0.6931472
## 3003                               1 5.298317 3.5553481 1.0986123
## 3004                               1 4.605170 2.3025851 1.3862944
## 3005                               1 3.912023 1.7917595 0.6931472
## 3006                               1 4.574711 3.7841896 1.6094379
## 3007                               1 4.430817 4.9628446 0.6931472
## 3008                               2 5.616771 2.9444390 1.3862944
## 3009                               1 4.595120 5.5174529 0.6931472
## 3010                               1 4.248495 0.6931472 1.6094379
## 3011                              52 5.003946 1.9459101 3.4011974
## 3012                               1 5.988961 3.4965076 1.6094379
## 3013                               1 4.976734 5.5834963 1.0986123
## 3014                               3 4.077537 5.4722707 0.0000000
## 3015                               1 4.248495 3.4011974 1.0986123
## 3016                               1 5.517453 3.2580965 1.3862944
## 3017                               1 4.248495 3.2580965 1.3862944
## 3018                               4 3.806662 4.2484952 1.6094379
## 3019                               1 4.317488 5.3082677 0.0000000
## 3020                               2 4.248495 0.0000000 1.7917595
## 3021                               2 5.068904 2.7080502 0.0000000
## 3022                               1 6.212606 2.0794415 1.3862944
## 3023                               3 4.007333 5.4249500 0.0000000
## 3024                               2 5.429346 0.6931472 0.0000000
## 3025                               5 4.204693 2.8332133 1.6094379
## 3026                               1 4.779123 0.0000000 1.0986123
## 3027                               1 5.241747 1.9459101 0.0000000
## 3028                               1 6.109248 2.6390573 3.4011974
## 3029                               3 3.806662 2.4849066 3.3672958
## 3030                               1 5.164786 0.6931472 3.4011974
## 3031                               1 4.418841 0.6931472 1.9459101
## 3032                               1 4.787492 0.6931472 0.0000000
## 3033                               2 3.555348 1.9459101 3.4011974
## 3034                               1 4.941642 5.7745515 0.6931472
## 3035                               1 3.806662 1.9459101 1.3862944
## 3036                               1 4.499810 1.9459101 1.0986123
## 3037                               3 4.369448 4.6821312 0.0000000
## 3038                               1 4.605170 2.7080502 1.0986123
## 3039                               2 4.189655 4.5538769 1.6094379
## 3040                               3 4.941642 4.8121844 1.0986123
## 3041                               1 4.584967 5.5012582 1.3862944
## 3042                               2 4.941642 5.0498560 1.0986123
## 3043                               1 5.273000 4.2626799 0.6931472
## 3044                               3 4.094345 5.5012582 0.0000000
## 3045                               1 5.010635 2.3978953 1.6094379
## 3046                               3 3.688879 2.0794415 3.2188758
## 3047                               1 4.867534 2.8332133 1.3862944
## 3048                               1 4.317488 0.0000000 1.0986123
## 3049                               1 5.513429 4.0430513 1.0986123
## 3050                               1 6.109248 2.8903718 0.6931472
## 3051                               1 4.787492 3.3672958 2.6390573
## 3052                               1 5.521461 4.3694479 2.0794415
## 3053                               1 4.382027 0.0000000 0.0000000
## 3054                               2 4.941642 2.8332133 1.6094379
## 3055                               1 4.787492 1.6094379 1.0986123
## 3056                               2 3.806662 5.4337220 1.0986123
## 3057                               2 4.605170 0.0000000 0.0000000
## 3058                               1 5.164786 3.9512437 0.6931472
## 3059                               2 4.867534 2.7725887 0.0000000
## 3060                               1 5.164786 2.1972246 1.0986123
## 3061                               1 6.476972 5.1119878 0.6931472
## 3062                               1 4.442651 3.3672958 1.3862944
## 3063                               1 5.164786 2.9957323 3.4011974
## 3064                               1 4.653960 2.3025851 1.3862944
## 3065                               1 4.382027 1.6094379 2.3025851
## 3066                               1 5.010635 3.6109179 1.9459101
## 3067                               1 5.273000 0.0000000 1.6094379
## 3068                               1 6.620073 3.4657359 1.0986123
## 3069                               2 5.517453 5.4380793 0.6931472
## 3070                               1 4.941642 0.0000000 1.9459101
## 3071                               1 5.192957 4.2766661 0.6931472
## 3072                               3 4.499810 0.0000000 1.0986123
## 3073                               1 4.787492 4.4308168 1.0986123
## 3074                               1 4.442651 4.5747110 0.6931472
## 3075                               3 5.159055 5.1761497 1.0986123
## 3076                               1 5.010635 0.6931472 3.0445224
## 3077                               1 5.686975 5.5645204 0.0000000
## 3078                               1 5.192957 4.3438054 1.0986123
## 3079                               1 5.147494 2.8903718 0.0000000
## 3080                               1 4.867534 3.5835189 1.6094379
## 3081                               8 3.951244 2.9444390 1.9459101
## 3082                               1 5.393628 0.6931472 0.0000000
## 3083                               3 3.610918 2.7725887 3.2188758
## 3084                               1 4.442651 3.5835189 0.6931472
## 3085                               1 5.517453 4.3307333 1.0986123
## 3086                               1 5.010635 2.3025851 2.6390573
## 3087                               1 4.779123 1.9459101 1.7917595
## 3088                               1 4.499810 4.0430513 1.3862944
## 3089                               1 5.298317 1.3862944 1.3862944
## 3090                               1 4.574711 5.1761497 1.0986123
## 3091                               1 5.988961 2.5649494 3.4011974
## 3092                               2 5.017280 3.6635616 1.6094379
## 3093                               1 5.298317 3.7135721 1.0986123
## 3094                               1 4.406719 0.6931472 1.6094379
## 3095                               1 4.867534 4.4659081 0.0000000
## 3096                               1 4.234107 2.4849066 0.6931472
## 3097                               1 5.010635 4.4886364 0.0000000
## 3098                               1 5.010635 5.3981627 0.6931472
## 3099                               1 4.605170 0.6931472 1.0986123
## 3100                               1 5.273000 3.4011974 1.3862944
## 3101                               1 5.525453 3.2580965 1.6094379
## 3102                               1 5.298317 0.0000000 0.0000000
## 3103                               1 4.605170 1.6094379 1.7917595
## 3104                               1 4.941642 2.7725887 3.4011974
## 3105                               1 4.983607 3.5263605 2.8903718
## 3106                               1 5.521461 4.4773368 0.6931472
## 3107                               1 6.212606 1.7917595 0.0000000
## 3108                               2 4.382027 5.4161004 1.0986123
## 3109                               1 5.393628 4.4426513 0.6931472
## 3110                               4 4.624973 1.7917595 0.6931472
## 3111                               1 4.787492 2.0794415 1.6094379
## 3112                               1 5.135798 1.9459101 0.6931472
## 3113                               1 5.003946 0.0000000 0.0000000
## 3114                               1 5.192957 1.7917595 1.0986123
## 3115                               1 4.488636 3.2188758 0.0000000
## 3116                               2 5.293305 3.4339872 0.6931472
## 3117                               6 4.276666 4.1271344 1.6094379
## 3118                               1 4.382027 1.7917595 1.9459101
## 3119                               1 4.595120 5.0751738 1.0986123
## 3120                               1 4.828314 3.2580965 3.4011974
## 3121                               1 5.010635 5.0562458 0.0000000
## 3122                               1 4.663439 5.2522734 0.6931472
## 3123                               1 5.521461 2.9444390 3.4011974
## 3124                               1 5.010635 1.9459101 0.6931472
## 3125                               1 4.605170 2.7080502 1.0986123
## 3126                               1 5.241747 2.1972246 1.0986123
## 3127                               1 7.600402 2.9957323 0.0000000
## 3128                               1 4.787492 4.2904594 0.0000000
## 3129                               2 4.605170 1.0986123 1.3862944
## 3130                              52 5.003946 1.9459101 3.4011974
## 3131                               1 6.173786 4.0775374 2.3025851
## 3132                               1 4.605170 0.0000000 0.0000000
## 3133                               5 3.496508 4.4308168 1.6094379
## 3134                               1 4.955827 5.3659760 0.0000000
## 3135                               1 4.905275 3.6375862 1.0986123
## 3136                               1 4.905275 5.0998664 1.0986123
## 3137                               1 4.382027 2.9444390 1.6094379
## 3138                               1 4.382027 3.6375862 1.0986123
## 3139                               3 4.465908 5.6058021 0.6931472
## 3140                               2 6.109248 2.4849066 1.0986123
## 3141                               1 5.616771 0.6931472 0.6931472
## 3142                               1 5.010635 3.7612001 0.6931472
## 3143                               1 3.912023 1.0986123 1.6094379
## 3144                               1 4.369448 5.1704840 1.0986123
## 3145                              15 4.094345 4.5325995 0.0000000
## 3146                               3 3.806662 3.8918203 1.0986123
## 3147                               1 4.787492 1.6094379 0.6931472
## 3148                               1 4.976734 0.0000000 1.0986123
## 3149                               1 5.164786 4.9126549 1.0986123
## 3150                               1 4.919981 1.7917595 1.9459101
## 3151                               1 4.454347 3.6109179 1.3862944
## 3152                               1 5.843544 2.9444390 1.6094379
## 3153                               1 5.521461 1.9459101 1.6094379
## 3154                               1 4.653960 0.6931472 1.3862944
## 3155                               1 4.867534 2.7080502 0.6931472
## 3156                               3 4.499810 4.5747110 1.0986123
## 3157                               1 5.010635 5.0369526 1.0986123
## 3158                               2 5.010635 3.7376696 1.3862944
## 3159                               3 5.416100 4.8441871 1.0986123
## 3160                               2 4.382027 1.3862944 3.4011974
## 3161                               1 5.010635 1.0986123 0.0000000
## 3162                               2 4.787492 2.4849066 0.0000000
## 3163                               1 3.970292 4.9628446 0.6931472
## 3164                               1 4.744932 1.3862944 3.4011974
## 3165                               1 5.164786 1.9459101 0.0000000
## 3166                               1 5.010635 1.6094379 0.0000000
## 3167                               1 5.087596 2.8903718 0.6931472
## 3168                               1 4.553877 2.1972246 1.3862944
## 3169                               2 4.007333 2.9444390 0.6931472
## 3170                               2 4.762174 5.3981627 1.6094379
## 3171                               1 5.164786 1.3862944 0.6931472
## 3172                               1 4.317488 4.1588831 3.4011974
## 3173                               2 5.241747 5.3936275 1.6094379
## 3174                               1 5.010635 1.9459101 0.6931472
## 3175                               2 3.806662 3.5835189 0.6931472
## 3176                               1 5.247024 5.4680601 0.6931472
## 3177                               1 4.867534 2.1972246 1.6094379
## 3178                               2 4.369448 2.5649494 0.0000000
## 3179                               1 5.010635 4.2195077 1.6094379
## 3180                               1 4.605170 4.6051702 0.6931472
## 3181                               1 4.744932 4.3567088 0.0000000
## 3182                               2 5.703782 2.8332133 0.6931472
## 3183                               3 3.663562 3.2580965 2.4849066
## 3184                               1 5.298317 2.9957323 1.3862944
## 3185                               1 5.521461 2.7725887 1.0986123
## 3186                               1 4.787492 1.3862944 1.7917595
## 3187                               2 4.653960 3.4339872 0.0000000
## 3188                               1 4.605170 0.0000000 1.0986123
## 3189                               1 4.442651 1.9459101 0.6931472
## 3190                               1 5.768321 3.1780538 3.4011974
## 3191                               2 5.003946 2.9444390 1.0986123
## 3192                               1 5.991465 0.0000000 1.0986123
## 3193                               2 4.276666 3.2580965 1.0986123
## 3194                               1 4.744932 4.0430513 1.9459101
## 3195                               2 5.783825 4.4067192 1.0986123
## 3196                               5 3.465736 4.7095302 0.0000000
## 3197                               1 4.605170 2.3978953 1.0986123
## 3198                               1 5.010635 2.4849066 1.3862944
## 3199                               1 4.553877 4.2766661 1.3862944
## 3200                               1 5.669881 4.7361984 0.0000000
## 3201                               5 3.401197 4.2046926 0.0000000
## 3202                               1 4.317488 0.0000000 1.3862944
## 3203                               1 4.941642 3.2188758 1.6094379
## 3204                               2 4.605170 0.6931472 0.0000000
## 3205                               1 4.382027 4.4886364 3.1780538
## 3206                               1 4.828314 0.0000000 1.0986123
## 3207                               1 5.521461 2.3978953 1.3862944
## 3208                               1 3.912023 0.6931472 0.6931472
## 3209                               2 5.978886 3.6109179 1.6094379
## 3210                               1 4.605170 2.3978953 0.6931472
## 3211                               3 4.369448 4.4886364 0.0000000
## 3212                               1 3.951244 5.3132060 0.6931472
## 3213                               3 4.584967 4.2046926 1.3862944
## 3214                               1 4.787492 1.0986123 0.6931472
## 3215                               1 5.843544 4.0253517 0.0000000
## 3216                               1 3.912023 0.0000000 0.0000000
## 3217                               1 5.857933 0.0000000 0.6931472
## 3218                               1 4.043051 5.2933048 0.6931472
## 3219                               1 4.787492 1.3862944 0.6931472
## 3220                               2 4.828314 3.9889840 1.6094379
## 3221                               1 4.976734 4.0604430 1.0986123
## 3222                               1 4.488636 2.5649494 4.4998097
## 3223                               2 5.099866 5.2983174 0.0000000
## 3224                               2 5.347108 5.3706380 0.0000000
## 3225                               2 4.744932 0.0000000 1.9459101
## 3226                               1 4.700480 3.0445224 3.8066625
## 3227                               1 5.293305 2.0794415 1.6094379
## 3228                               1 5.605802 1.3862944 1.6094379
## 3229                               3 4.317488 1.9459101 1.9459101
## 3230                               1 4.234107 3.7376696 2.5649494
## 3231                               1 5.187386 0.0000000 0.0000000
## 3232                               1 4.663439 1.0986123 1.9459101
## 3233                               2 4.094345 5.4205350 0.6931472
## 3234                               1 4.787492 1.0986123 1.9459101
## 3235                               1 4.382027 0.0000000 0.0000000
## 3236                              26 4.317488 3.7376696 3.4011974
## 3237                               1 4.477337 2.6390573 0.6931472
## 3238                               8 3.806662 2.9444390 1.3862944
## 3239                               1 4.317488 0.6931472 1.0986123
## 3240                               2 4.369448 0.6931472 0.6931472
## 3241                               1 4.007333 1.7917595 2.7080502
## 3242                               1 3.806662 2.8332133 0.0000000
## 3243                               3 4.382027 4.8675345 1.0986123
## 3244                               1 4.700480 1.0986123 1.0986123
## 3245                               2 5.293305 5.1761497 0.6931472
## 3246                               1 4.543295 4.8598124 0.6931472
## 3247                               3 5.991465 3.5263605 1.6094379
## 3248                               1 4.094345 1.6094379 1.9459101
## 3249                               1 5.164786 3.4339872 0.6931472
## 3250                               1 4.605170 0.6931472 1.6094379
## 3251                               1 3.912023 2.1972246 1.0986123
## 3252                              52 5.293305 2.0794415 3.4011974
## 3253                               1 3.988984 1.3862944 1.3862944
## 3254                               1 4.867534 2.0794415 1.3862944
## 3255                               1 5.017280 3.7612001 0.6931472
## 3256                               1 4.382027 0.0000000 0.0000000
## 3257                               1 4.700480 1.6094379 2.0794415
## 3258                               1 4.094345 2.6390573 1.0986123
## 3259                               1 4.700480 4.0604430 2.3025851
## 3260                               1 4.290459 2.9444390 0.6931472
## 3261                               2 5.176150 5.3423343 1.0986123
## 3262                               1 4.499810 1.7917595 2.6390573
## 3263                               1 5.247024 0.6931472 0.0000000
## 3264                               1 4.653960 0.0000000 1.6094379
## 3265                               1 5.010635 0.0000000 2.6390573
## 3266                               2 4.174387 3.2580965 1.3862944
## 3267                               1 3.555348 0.6931472 0.0000000
## 3268                               1 6.551080 0.0000000 1.0986123
## 3269                               1 5.220356 2.3025851 0.6931472
## 3270                               1 5.010635 3.9889840 4.4998097
## 3271                               1 4.852030 2.7725887 0.0000000
## 3272                               1 5.700444 4.5217886 3.3322045
## 3273                               1 5.129899 0.6931472 1.0986123
## 3274                               1 4.691348 4.8675345 1.9459101
## 3275                               1 4.595120 4.3040651 1.3862944
## 3276                               1 5.476464 3.9512437 1.3862944
## 3277                               1 4.605170 2.8332133 3.4011974
## 3278                               1 4.820282 3.9512437 1.3862944
## 3279                               3 4.234107 4.1588831 0.0000000
## 3280                               1 5.416100 3.3322045 0.6931472
## 3281                               1 4.779123 1.0986123 0.6931472
## 3282                               1 5.393628 4.0073332 1.9459101
## 3283                               2 5.010635 1.7917595 1.3862944
## 3284                               4 3.931826 2.9444390 1.0986123
## 3285                               1 5.010635 2.1972246 2.1972246
## 3286                               1 4.510860 2.1972246 0.0000000
## 3287                              19 4.934474 2.9957323 4.4998097
## 3288                               1 4.605170 3.8066625 1.3862944
## 3289                               2 4.094345 5.6167711 0.0000000
## 3290                               1 5.541264 2.0794415 0.6931472
## 3291                               1 4.543295 3.2958369 1.9459101
## 3292                               1 5.187386 3.0445224 0.6931472
## 3293                               1 4.905275 4.6539604 1.3862944
## 3294                               1 3.912023 4.3438054 1.6094379
## 3295                               2 5.857933 1.7917595 0.6931472
## 3296                               1 5.010635 3.2580965 3.4011974
## 3297                               1 5.926926 1.7917595 1.0986123
## 3298                               1 5.010635 2.3025851 1.0986123
## 3299                               1 5.135798 3.1780538 0.6931472
## 3300                               1 5.616771 1.0986123 1.0986123
## 3301                               1 3.401197 0.6931472 1.0986123
## 3302                               1 5.010635 2.9444390 0.0000000
## 3303                               1 4.941642 0.6931472 1.0986123
## 3304                               1 5.298317 0.0000000 3.4011974
## 3305                               1 4.595120 4.0430513 0.6931472
## 3306                               1 5.273000 1.0986123 1.0986123
## 3307                               2 4.488636 2.3025851 0.6931472
## 3308                               2 4.174387 4.4659081 1.0986123
## 3309                               2 5.347108 1.9459101 1.0986123
## 3310                              52 5.068904 1.6094379 3.4011974
## 3311                               2 4.007333 4.2484952 1.0986123
## 3312                              52 4.859812 1.3862944 3.4011974
## 3313                               1 5.703782 1.3862944 1.0986123
## 3314                               2 4.369448 2.9957323 0.0000000
## 3315                               1 8.699515 2.8332133 2.6390573
## 3316                               1 4.158883 1.9459101 1.0986123
## 3317                               1 4.700480 4.2766661 2.3025851
## 3318                               1 4.007333 4.1896547 2.6390573
## 3319                               1 4.007333 2.0794415 1.6094379
## 3320                               1 4.442651 2.7725887 0.6931472
## 3321                               1 4.867534 2.7725887 3.3672958
## 3322                               1 3.912023 1.3862944 2.3025851
## 3323                               1 4.605170 5.3230100 0.0000000
## 3324                               1 4.976734 1.3862944 0.6931472
## 3325                               1 4.605170 3.7841896 1.6094379
## 3326                               1 5.298317 1.3862944 0.0000000
## 3327                               1 4.382027 5.8664681 0.0000000
## 3328                               2 5.298317 1.3862944 1.7917595
## 3329                               2 4.787492 4.3820266 1.0986123
## 3330                               1 5.192957 5.2522734 1.0986123
## 3331                               1 5.937536 4.5643482 0.6931472
## 3332                               5 3.496508 4.5849675 0.0000000
## 3333                              52 5.293305 1.3862944 3.4011974
## 3334                              52 5.003946 1.3862944 3.4011974
## 3335                               1 4.584967 3.6109179 2.0794415
## 3336                               2 5.521461 3.5263605 1.3862944
## 3337                               1 4.094345 1.3862944 0.0000000
## 3338                               1 5.003946 3.8918203 0.6931472
## 3339                               1 4.442651 4.8040210 1.0986123
## 3340                               1 4.499810 3.1354942 1.0986123
## 3341                               3 3.850148 2.3978953 1.6094379
## 3342                              39 5.192957 2.7725887 3.4011974
## 3343                               1 4.700480 0.0000000 1.0986123
## 3344                               1 5.135798 4.8751973 0.6931472
## 3345                               1 5.347108 3.2188758 1.6094379
## 3346                               1 4.174387 5.0875963 0.6931472
## 3347                               1 5.416100 2.6390573 0.6931472
## 3348                               2 5.135798 4.8283137 1.0986123
## 3349                               2 4.127134 1.3862944 0.6931472
## 3350                               1 4.828314 2.0794415 0.6931472
## 3351                               1 4.663439 0.0000000 0.0000000
## 3352                               1 4.532599 4.9272537 0.6931472
## 3353                               1 4.442651 3.7841896 1.6094379
## 3354                               1 5.411646 2.4849066 0.6931472
## 3355                               1 4.976734 3.9512437 0.0000000
## 3356                               1 3.688879 0.0000000 0.0000000
## 3357                               3 4.905275 5.0106353 0.6931472
## 3358                               1 4.574711 5.1761497 1.0986123
## 3359                               2 4.234107 3.7612001 4.0943446
## 3360                               1 5.416100 5.4510385 1.3862944
## 3361                               1 5.370638 0.6931472 1.0986123
## 3362                               2 4.595120 2.0794415 0.6931472
## 3363                               2 4.094345 2.3025851 0.0000000
## 3364                               1 5.713733 3.3672958 1.9459101
## 3365                               1 4.709530 4.6443909 1.0986123
## 3366                               1 4.094345 2.3025851 3.4011974
## 3367                               1 5.768321 5.1474945 0.6931472
## 3368                               2 4.718499 5.7493930 5.2983174
## 3369                               1 5.220356 5.0689042 0.6931472
## 3370                               1 4.605170 3.6109179 3.3672958
## 3371                               1 5.010635 0.0000000 0.0000000
## 3372                               1 4.867534 4.5849675 1.6094379
## 3373                               1 4.867534 2.1972246 1.6094379
## 3374                               1 4.828314 0.6931472 1.6094379
## 3375                               1 5.247024 5.3752784 1.3862944
## 3376                               1 4.248495 3.6888795 1.0986123
## 3377                               2 6.395262 1.6094379 0.0000000
## 3378                               1 4.382027 4.4998097 1.0986123
## 3379                               1 4.605170 3.3672958 1.7917595
## 3380                               1 5.298317 0.6931472 3.4011974
## 3381                               1 4.094345 2.5649494 0.6931472
## 3382                               1 4.605170 2.5649494 0.6931472
## 3383                               1 4.499810 4.4067192 1.0986123
## 3384                               1 4.110874 1.0986123 1.3862944
## 3385                               1 4.605170 2.6390573 1.9459101
## 3386                               1 5.828946 0.0000000 1.7917595
## 3387                               3 4.317488 5.2094862 0.6931472
## 3388                               1 4.867534 1.7917595 3.4011974
## 3389                               1 4.941642 1.7917595 0.6931472
## 3390                               1 4.718499 3.0910425 1.0986123
## 3391                               1 5.075174 3.2188758 1.0986123
## 3392                               2 5.105945 4.9558271 1.0986123
## 3393                               3 4.382027 2.0794415 3.4011974
## 3394                               1 5.075174 2.0794415 1.3862944
## 3395                               1 5.010635 4.5432948 0.6931472
## 3396                               3 3.891820 4.3694479 0.6931472
## 3397                               1 6.514713 1.0986123 1.6094379
## 3398                               1 5.010635 2.1972246 1.6094379
## 3399                               1 4.369448 5.5568281 0.0000000
## 3400                               1 5.416100 3.8286414 0.6931472
## 3401                               1 4.499810 4.9767337 0.6931472
## 3402                               4 5.652489 3.1354942 2.0794415
## 3403                               1 5.703782 0.6931472 0.6931472
## 3404                               2 4.007333 0.0000000 0.6931472
## 3405                               1 4.382027 4.3944492 1.6094379
## 3406                               1 4.499810 5.6021188 0.0000000
## 3407                               1 5.783825 1.0986123 0.6931472
## 3408                               1 4.007333 2.1972246 1.9459101
## 3409                               1 5.337538 3.6375862 0.6931472
## 3410                               3 5.049856 2.0794415 0.0000000
## 3411                               1 4.442651 2.1972246 1.3862944
## 3412                               1 5.298317 1.3862944 0.6931472
## 3413                               1 5.192957 0.6931472 0.6931472
## 3414                               1 5.783825 5.1298987 1.0986123
## 3415                               1 5.075174 4.1743873 1.7917595
## 3416                               1 4.867534 4.0775374 0.0000000
## 3417                               1 4.700480 4.9126549 0.0000000
## 3418                               1 5.010635 4.7874917 0.6931472
## 3419                               2 5.003946 4.7957905 0.6931472
## 3420                               1 5.370638 2.1972246 1.0986123
## 3421                               1 5.043425 3.0445224 0.0000000
## 3422                               1 3.912023 1.0986123 1.0986123
## 3423                               2 4.174387 0.6931472 0.6931472
## 3424                               1 4.718499 4.9272537 1.3862944
## 3425                               1 5.521461 4.6728288 1.0986123
## 3426                               2 4.174387 2.0794415 1.3862944
## 3427                               4 4.595120 5.0304379 0.0000000
## 3428                               1 5.978886 0.0000000 1.0986123
## 3429                               1 5.220356 2.9444390 1.9459101
## 3430                               2 3.806662 3.2580965 0.6931472
## 3431                               2 4.007333 2.8332133 0.6931472
## 3432                               1 5.105945 0.0000000 1.9459101
## 3433                               1 5.652489 3.8501476 0.6931472
## 3434                               1 5.393628 2.9957323 1.0986123
## 3435                               1 4.317488 2.3978953 0.6931472
## 3436                               1 4.787492 2.3978953 1.6094379
## 3437                               1 4.605170 2.3025851 1.0986123
## 3438                               1 4.553877 1.3862944 0.0000000
## 3439                               2 4.779123 4.9836066 0.6931472
## 3440                               1 5.298317 3.3322045 0.0000000
## 3441                               1 3.871201 4.9836066 0.0000000
## 3442                               1 3.401197 4.8283137 3.4011974
## 3443                               1 4.174387 0.6931472 1.3862944
## 3444                               2 4.369448 2.7080502 2.7080502
## 3445                               1 4.653960 3.0910425 1.9459101
## 3446                               1 6.040255 0.6931472 0.6931472
## 3447                               1 4.553877 0.0000000 1.6094379
## 3448                               1 5.669881 3.2188758 0.6931472
## 3449                               1 5.192957 0.6931472 0.6931472
## 3450                               1 5.940171 2.3978953 1.0986123
## 3451                               2 3.806662 3.3322045 0.6931472
## 3452                               1 5.703782 0.6931472 0.0000000
## 3453                               1 4.700480 1.0986123 0.0000000
## 3454                               1 4.653960 5.6383547 0.6931472
## 3455                               2 3.806662 3.7376696 1.6094379
## 3456                               1 4.382027 4.6913479 2.5649494
## 3457                               1 4.488636 1.9459101 1.0986123
## 3458                               1 4.859812 0.0000000 1.6094379
## 3459                               1 5.521461 1.3862944 3.4011974
## 3460                               1 5.521461 0.6931472 0.0000000
## 3461                               1 5.164786 1.6094379 0.6931472
## 3462                               1 3.688879 2.3025851 1.0986123
## 3463                               1 4.442651 0.0000000 2.6390573
## 3464                               2 5.389072 3.0445224 1.3862944
## 3465                               1 4.867534 1.0986123 3.4011974
## 3466                              52 5.003946 1.3862944 3.4011974
## 3467                               1 4.605170 1.6094379 0.0000000
## 3468                               2 5.666427 3.7135721 1.0986123
## 3469                               4 4.204693 3.0445224 0.0000000
## 3470                               1 5.398163 5.5294291 0.6931472
## 3471                               1 4.317488 1.0986123 1.3862944
## 3472                               6 4.718499 3.0910425 3.4011974
## 3473                               1 5.164786 2.7080502 0.0000000
## 3474                               1 7.303170 1.7917595 0.6931472
## 3475                               1 4.787492 1.6094379 0.6931472
## 3476                               1 5.010635 0.0000000 3.2580965
## 3477                               1 5.910797 0.0000000 0.6931472
## 3478                               2 4.394449 4.8903491 0.0000000
## 3479                               1 4.488636 5.0238805 1.0986123
## 3480                              52 5.293305 1.0986123 3.4011974
## 3481                               1 3.806662 5.3518581 0.6931472
## 3482                              52 5.003946 0.6931472 3.4011974
## 3483                               1 4.174387 2.5649494 0.6931472
## 3484                               1 5.010635 3.8712010 0.6931472
## 3485                               1 5.293305 2.0794415 1.0986123
## 3486                               1 5.978886 2.1972246 1.6094379
## 3487                               1 4.867534 3.3322045 3.4011974
## 3488                               1 5.164786 0.0000000 1.0986123
## 3489                               1 4.499810 5.1357984 0.0000000
## 3490                               1 5.857933 1.9459101 0.0000000
## 3491                               1 5.521461 1.0986123 0.6931472
## 3492                               2 5.521461 1.7917595 1.0986123
## 3493                               1 5.192957 4.5747110 0.6931472
## 3494                               1 3.891820 0.6931472 1.3862944
## 3495                               1 4.510860 4.6634391 1.3862944
## 3496                               1 4.605170 2.0794415 1.6094379
## 3497                               1 5.023881 1.6094379 0.0000000
## 3498                               1 4.700480 5.4249500 0.0000000
## 3499                               1 4.905275 1.0986123 0.6931472
## 3500                               1 4.317488 2.6390573 0.6931472
## 3501                               1 5.521461 0.6931472 1.9459101
## 3502                               1 5.298317 2.0794415 0.0000000
## 3503                               2 4.317488 1.6094379 1.0986123
## 3504                               5 4.477337 3.4965076 1.0986123
## 3505                               1 6.882437 0.0000000 0.6931472
## 3506                               1 5.720312 2.0794415 2.3025851
## 3507                               1 5.393628 4.9836066 0.6931472
## 3508                               1 5.010635 2.3978953 0.0000000
## 3509                               2 3.891820 1.3862944 1.3862944
## 3510                               1 4.941642 4.9487599 0.0000000
## 3511                               1 4.454347 3.9512437 0.0000000
## 3512                               1 6.476972 3.4011974 0.6931472
## 3513                               1 5.416100 1.0986123 0.6931472
## 3514                               1 4.317488 1.3862944 0.0000000
## 3515                               1 5.010635 3.8918203 0.0000000
## 3516                               1 5.293305 0.0000000 1.0986123
## 3517                               2 4.553877 5.3181200 1.3862944
## 3518                               1 5.298317 4.7004804 0.6931472
## 3519                               1 5.298317 3.8066625 1.0986123
## 3520                               1 5.164786 3.4657359 1.9459101
## 3521                              52 4.859812 1.0986123 3.4011974
## 3522                               1 5.298317 2.5649494 1.0986123
## 3523                               3 4.094345 2.3978953 1.0986123
## 3524                               1 4.744932 5.4889377 1.0986123
## 3525                               1 4.905275 4.3820266 0.6931472
## 3526                               1 4.077537 4.6634391 1.0986123
## 3527                               1 5.278115 5.4467374 0.6931472
## 3528                               1 4.852030 3.9512437 1.0986123
## 3529                               1 5.298317 2.3978953 3.4011974
## 3530                               1 5.192957 2.5649494 1.6094379
## 3531                               2 4.094345 2.7725887 3.4011974
## 3532                               1 4.248495 0.6931472 4.4998097
## 3533                               1 3.688879 4.3307333 0.6931472
## 3534                               1 5.521461 1.9459101 1.6094379
## 3535                               1 4.382027 2.8332133 0.6931472
## 3536                               1 4.442651 4.4067192 1.0986123
## 3537                               1 4.248495 5.2781147 0.0000000
## 3538                               1 4.007333 1.3862944 1.6094379
## 3539                               1 4.605170 2.1972246 0.6931472
## 3540                               1 4.290459 2.9444390 2.3025851
## 3541                               1 4.174387 5.2094862 0.6931472
## 3542                               2 5.087596 4.3174881 0.0000000
## 3543                               1 5.616771 2.1972246 3.4011974
## 3544                               1 5.298317 3.2580965 0.6931472
## 3545                               1 5.521461 5.1704840 1.6094379
## 3546                               1 6.214608 2.3978953 0.0000000
## 3547                               1 4.787492 2.6390573 3.4011974
## 3548                               1 4.007333 2.0794415 1.0986123
## 3549                               4 4.077537 4.8362819 0.0000000
## 3550                               1 4.595120 0.0000000 0.0000000
## 3551                               1 5.043425 4.3174881 0.0000000
## 3552                               2 5.298317 1.3862944 1.0986123
## 3553                               1 4.094345 3.1354942 1.3862944
## 3554                               1 4.442651 4.6634391 1.0986123
## 3555                               2 5.010635 3.4011974 1.0986123
## 3556                               1 3.806662 3.2958369 0.6931472
## 3557                               2 5.298317 3.9702919 0.6931472
## 3558                               2 4.787492 5.2626902 0.6931472
## 3559                               2 5.273000 4.9199809 1.3862944
## 3560                               1 4.330733 3.3322045 3.4011974
## 3561                               1 6.214608 4.3040651 1.0986123
## 3562                               1 5.187386 5.0039463 1.0986123
## 3563                               3 5.298317 3.4011974 0.0000000
## 3564                               1 3.465736 1.7917595 0.6931472
## 3565                               2 3.912023 2.7725887 1.0986123
## 3566                               2 3.688879 1.6094379 0.0000000
## 3567                               3 4.127134 3.6635616 3.0445224
## 3568                              11 5.476464 2.7725887 0.0000000
## 3569                               1 5.187386 3.0910425 1.6094379
## 3570                               1 5.521461 3.0445224 1.6094379
## 3571                               1 5.991465 2.0794415 1.6094379
## 3572                               1 4.584967 5.2040067 0.6931472
## 3573                               1 4.488636 4.5951199 0.0000000
## 3574                               1 5.220356 1.0986123 0.6931472
## 3575                               1 4.828314 2.5649494 1.0986123
## 3576                               1 5.192957 0.0000000 0.6931472
## 3577                               2 3.401197 3.5263605 1.6094379
## 3578                               1 4.094345 3.5553481 0.0000000
## 3579                               1 4.744932 4.8675345 0.6931472
## 3580                               2 5.298317 2.5649494 0.6931472
## 3581                               2 5.187386 2.6390573 3.4011974
## 3582                               1 4.691348 2.4849066 0.0000000
## 3583                               2 4.820282 5.5721540 1.6094379
## 3584                               1 5.068904 3.7612001 0.6931472
## 3585                               1 4.442651 2.1972246 2.3025851
## 3586                               1 4.691348 4.6728288 0.6931472
## 3587                               1 4.700480 0.0000000 2.3025851
## 3588                               1 4.174387 0.6931472 0.6931472
## 3589                               1 4.718499 2.9957323 0.6931472
## 3590                               3 3.218876 4.3307333 1.6094379
## 3591                               2 4.369448 3.7612001 1.0986123
## 3592                               1 5.298317 0.6931472 1.0986123
## 3593                               4 4.007333 3.0445224 1.3862944
## 3594                               2 3.912023 3.4657359 0.6931472
## 3595                              52 4.859812 2.1972246 3.4011974
## 3596                               2 5.273000 3.8066625 3.4011974
## 3597                               1 4.369448 2.0794415 0.6931472
## 3598                               1 4.174387 2.0794415 1.0986123
## 3599                               1 4.812184 2.0794415 0.6931472
## 3600                               1 4.248495 2.0794415 1.6094379
## 3601                               2 4.605170 3.6109179 0.6931472
## 3602                               4 4.234107 4.9628446 0.0000000
## 3603                               1 6.109248 2.3025851 0.0000000
## 3604                               1 4.828314 0.6931472 1.0986123
## 3605                               2 4.317488 3.5553481 0.0000000
## 3606                               2 5.036953 1.9459101 0.0000000
## 3607                               1 4.094345 2.4849066 2.6390573
## 3608                               1 5.631212 4.3567088 0.0000000
## 3609                               2 4.382027 1.0986123 1.0986123
## 3610                               2 4.430817 5.2149358 0.0000000
## 3611                               1 5.192957 0.0000000 1.7917595
## 3612                               1 4.605170 1.9459101 1.6094379
## 3613                               2 4.454347 2.9957323 0.6931472
## 3614                               1 5.241747 2.5649494 1.9459101
## 3615                               1 4.867534 1.7917595 5.8998974
## 3616                               2 5.010635 4.5432948 0.0000000
## 3617                              52 5.003946 0.0000000 3.4011974
## 3618                               1 4.605170 0.0000000 0.6931472
## 3619                               1 4.976734 3.0445224 0.6931472
## 3620                               2 4.890349 5.1761497 2.6390573
## 3621                               1 4.317488 5.2257467 1.9459101
## 3622                               1 4.605170 2.7725887 0.6931472
## 3623                               1 4.595120 4.5432948 0.0000000
## 3624                               1 4.882802 1.6094379 1.0986123
## 3625                               1 4.276666 3.2958369 0.6931472
## 3626                               1 4.828314 2.5649494 0.0000000
## 3627                               1 4.624973 3.2580965 1.9459101
## 3628                              52 4.859812 1.0986123 3.4011974
## 3629                               1 4.672829 3.5553481 3.4011974
## 3630                               1 5.521461 0.6931472 0.0000000
## 3631                               2 4.499810 2.0794415 1.0986123
## 3632                               1 4.499810 0.6931472 0.0000000
## 3633                               1 5.298317 2.9957323 1.6094379
## 3634                               1 5.075174 1.9459101 1.9459101
## 3635                               2 4.820282 5.2781147 1.6094379
## 3636                               1 4.553877 5.1416636 1.3862944
## 3637                              52 4.859812 0.6931472 3.4011974
## 3638                               1 4.700480 4.1896547 1.3862944
## 3639                               1 4.521789 5.1532916 0.6931472
## 3640                               3 5.164786 5.0562458 1.0986123
## 3641                               1 4.897840 5.0562458 0.6931472
## 3642                               2 5.991465 2.8903718 0.0000000
## 3643                               1 5.023881 1.6094379 5.5984220
## 3644                               1 5.129899 2.7080502 2.0794415
## 3645                               2 4.553877 5.0498560 0.6931472
## 3646                               2 4.499810 4.9558271 0.6931472
## 3647                               1 4.094345 2.9444390 0.0000000
## 3648                               1 5.192957 4.0073332 1.7917595
## 3649                               1 4.430817 5.0106353 1.0986123
## 3650                               1 4.584967 3.4657359 1.3862944
## 3651                               1 4.499810 3.0445224 1.9459101
## 3652                               1 4.897840 1.7917595 1.7917595
## 3653                               1 4.779123 3.4657359 0.6931472
## 3654                               1 4.948760 2.9957323 0.0000000
## 3655                               1 5.293305 1.0986123 1.3862944
## 3656                               1 4.682131 5.4467374 1.0986123
## 3657                               1 5.010635 1.0986123 1.6094379
## 3658                               3 5.164786 3.8286414 0.6931472
## 3659                               1 4.499810 1.6094379 1.0986123
## 3660                               1 3.806662 1.0986123 0.6931472
## 3661                               2 4.143135 4.9836066 1.0986123
## 3662                               2 4.605170 2.5649494 1.7917595
## 3663                               1 4.700480 3.6375862 0.0000000
## 3664                               1 5.978886 3.9120230 1.9459101
## 3665                               2 4.248495 0.0000000 1.0986123
## 3666                               3 5.988961 4.4659081 0.0000000
## 3667                               1 4.976734 3.0910425 2.6390573
## 3668                               1 4.077537 2.9444390 2.6390573
## 3669                               1 3.912023 0.0000000 2.3025851
## 3670                               1 4.976734 3.9512437 0.6931472
## 3671                               1 5.501258 1.0986123 0.6931472
## 3672                               2 5.003946 5.0625950 0.0000000
## 3673                               1 3.912023 0.0000000 0.0000000
## 3674                               1 5.010635 0.0000000 0.0000000
## 3675                               1 4.094345 0.6931472 0.0000000
## 3676                               1 5.105945 1.9459101 1.6094379
## 3677                               4 3.970292 5.0875963 0.0000000
## 3678                               4 3.637586 3.6888795 0.0000000
## 3679                               4 3.891820 4.5643482 0.0000000
## 3680                               4 3.850148 4.4998097 0.0000000
## 3681                               1 4.787492 2.7080502 0.6931472
## 3682                               1 5.164786 3.8066625 0.6931472
## 3683                               5 4.859812 2.7725887 3.4011974
## 3684                               1 4.653960 0.0000000 0.0000000
## 3685                               1 5.616771 1.0986123 0.6931472
## 3686                               1 5.347108 3.4657359 0.0000000
## 3687                               1 4.174387 0.0000000 0.0000000
## 3688                               1 3.951244 1.6094379 1.0986123
## 3689                               2 4.605170 2.5649494 0.0000000
## 3690                               1 4.510860 3.2580965 0.6931472
## 3691                               2 4.820282 4.8202816 1.6094379
## 3692                               1 6.309918 3.1780538 0.0000000
## 3693                               1 4.248495 3.6888795 1.7917595
## 3694                               1 5.010635 5.0498560 0.0000000
## 3695                               2 5.170484 5.1239640 1.0986123
## 3696                               1 4.595120 2.1972246 3.4011974
## 3697                               1 4.867534 0.6931472 1.7917595
## 3698                               1 4.691348 5.3375381 0.0000000
## 3699                               1 4.317488 4.8202816 0.6931472
## 3700                               1 4.553877 1.9459101 1.3862944
## 3701                               1 3.912023 0.0000000 1.9459101
## 3702                               2 4.605170 3.6375862 0.6931472
## 3703                               1 4.219508 4.4543473 0.0000000
## 3704                               1 4.644391 5.6970935 1.0986123
## 3705                               1 3.401197 0.0000000 2.7080502
## 3706                               1 6.388561 3.0910425 1.3862944
## 3707                               1 4.174387 2.4849066 2.1972246
## 3708                               1 4.007333 2.3025851 0.0000000
## 3709                               1 5.521461 1.7917595 1.7917595
## 3710                               1 4.442651 3.6888795 2.3025851
## 3711                               2 4.499810 4.6913479 1.6094379
## 3712                               1 4.499810 0.6931472 1.0986123
## 3713                               1 4.499810 0.6931472 2.6390573
## 3714                               1 5.293305 0.6931472 2.5649494
## 3715                               1 5.616771 0.6931472 3.4011974
## 3716                               1 5.010635 3.1354942 1.0986123
## 3717                               1 4.941642 2.6390573 0.6931472
## 3718                               3 4.094345 3.7841896 0.0000000
## 3719                               1 3.583519 0.6931472 2.3025851
## 3720                               1 4.442651 3.9318256 1.0986123
## 3721                               1 4.442651 1.3862944 0.0000000
## 3722                               1 3.806662 3.4011974 1.9459101
## 3723                               1 4.521789 5.4249500 1.0986123
## 3724                               1 3.401197 0.0000000 0.0000000
## 3725                               1 4.317488 1.0986123 0.0000000
## 3726                               1 4.595120 2.7080502 1.7917595
## 3727                               1 4.605170 1.9459101 2.9957323
## 3728                               1 4.744932 3.9889840 1.0986123
## 3729                               1 5.164786 2.7725887 1.6094379
## 3730                               2 4.718499 2.9444390 1.3862944
## 3731                               1 6.109248 1.7917595 1.9459101
## 3732                              29 4.634729 1.9459101 3.4011974
## 3733                               1 5.010635 2.1972246 1.6094379
## 3734                               2 4.859812 3.6888795 0.0000000
## 3735                               1 4.976734 2.0794415 1.0986123
## 3736                               1 4.499810 0.0000000 0.6931472
## 3737                               2 4.605170 4.5951199 3.4011974
## 3738                               2 3.713572 2.4849066 0.6931472
## 3739                              29 4.976734 0.0000000 3.4011974
## 3740                              29 4.934474 1.3862944 3.4011974
## 3741                              29 4.762174 1.7917595 3.4011974
## 3742                               1 3.912023 1.6094379 1.6094379
## 3743                               1 4.382027 5.5373343 0.0000000
## 3744                               1 4.605170 2.3025851 1.6094379
## 3745                               1 5.416100 2.4849066 1.0986123
## 3746                               1 4.248495 1.9459101 0.0000000
## 3747                               1 4.382027 0.6931472 1.0986123
## 3748                               1 4.248495 5.4293456 0.6931472
## 3749                               5 3.433987 4.0943446 0.0000000
## 3750                               1 3.688879 3.2188758 0.0000000
## 3751                               1 5.669881 2.4849066 1.3862944
## 3752                               1 5.459586 3.1354942 1.3862944
## 3753                               1 5.298317 0.6931472 0.0000000
## 3754                               1 4.700480 1.6094379 0.0000000
## 3755                               2 4.787492 1.6094379 1.0986123
## 3756                              29 4.955827 0.0000000 3.4011974
## 3757                               3 4.653960 3.0445224 1.0986123
## 3758                               1 4.605170 1.3862944 2.3025851
## 3759                               1 4.624973 1.7917595 0.6931472
## 3760                               1 5.023881 5.8111410 0.0000000
## 3761                               2 5.010635 3.0910425 3.3322045
## 3762                               1 4.553877 3.2188758 1.0986123
## 3763                               5 4.204693 3.9120230 1.6094379
## 3764                               1 4.174387 3.9318256 0.6931472
## 3765                               4 4.369448 3.0445224 3.0910425
## 3766                               2 4.007333 5.0172798 0.0000000
## 3767                               1 4.418841 0.0000000 4.0943446
## 3768                               1 5.298317 3.6375862 3.4011974
## 3769                               1 5.075174 2.8903718 2.3025851
## 3770                               1 4.382027 4.1108739 0.6931472
## 3771                               1 5.068904 0.0000000 0.6931472
## 3772                               1 4.499810 2.5649494 3.4011974
## 3773                               2 3.806662 2.3978953 1.3862944
## 3774                               1 4.605170 4.6347290 0.0000000
## 3775                               1 4.828314 2.7725887 1.0986123
## 3776                               1 4.382027 4.9628446 1.3862944
## 3777                               1 7.740664 3.4657359 1.0986123
## 3778                               3 4.499810 4.1271344 3.4011974
## 3779                               1 4.941642 0.6931472 1.0986123
## 3780                               3 3.951244 1.9459101 1.6094379
## 3781                               1 5.298317 2.1972246 0.6931472
## 3782                               1 3.688879 2.0794415 1.6094379
## 3783                               1 4.007333 2.4849066 0.6931472
## 3784                               2 4.234107 1.7917595 1.6094379
## 3785                               1 5.298317 1.7917595 1.0986123
## 3786                               1 4.605170 4.6443909 0.0000000
## 3787                               1 3.970292 2.7725887 2.9957323
## 3788                               1 6.052089 3.1780538 1.0986123
## 3789                               2 3.688879 3.8286414 1.0986123
## 3790                               1 3.688879 3.4657359 0.6931472
## 3791                               1 4.174387 0.0000000 1.0986123
## 3792                               4 4.691348 5.6629605 0.0000000
## 3793                               1 4.094345 4.1896547 1.6094379
## 3794                               2 5.192957 2.5649494 1.0986123
## 3795                               1 4.553877 4.8362819 0.6931472
## 3796                               3 4.941642 3.8918203 1.9459101
## 3797                               1 5.043425 1.3862944 1.0986123
## 3798                               1 4.653960 4.8828019 1.6094379
## 3799                               1 3.806662 3.9702919 0.6931472
## 3800                               1 5.799093 0.0000000 2.3025851
## 3801                               1 4.605170 5.2882670 0.6931472
## 3802                               1 3.891820 4.3040651 1.0986123
## 3803                               1 4.174387 0.0000000 0.0000000
## 3804                               1 4.248495 1.7917595 0.0000000
## 3805                               1 5.192957 1.9459101 1.0986123
## 3806                               1 4.867534 0.0000000 3.4011974
## 3807                               2 5.416100 4.5538769 1.0986123
## 3808                               1 4.442651 3.1780538 0.6931472
## 3809                               8 4.595120 2.0794415 3.4011974
## 3810                               1 4.553877 5.2203558 0.6931472
## 3811                               1 5.991465 1.9459101 1.0986123
## 3812                               3 4.595120 4.3944492 1.0986123
## 3813                               3 4.442651 4.6051702 1.0986123
## 3814                               1 4.499810 2.7725887 1.6094379
## 3815                               3 4.442651 3.4657359 1.6094379
## 3816                               1 4.867534 1.6094379 1.7917595
## 3817                               1 4.553877 3.4657359 0.0000000
## 3818                              52 5.003946 0.6931472 3.4011974
## 3819                               1 5.416100 0.6931472 1.9459101
## 3820                               1 4.905275 0.6931472 0.6931472
## 3821                               1 4.941642 3.7135721 0.6931472
## 3822                               1 5.298317 1.3862944 1.6094379
## 3823                              52 5.068904 1.9459101 3.4011974
## 3824                               1 5.298317 2.8332133 0.6931472
## 3825                               2 5.043425 3.1354942 3.3322045
## 3826                               1 4.828314 2.8903718 5.0106353
## 3827                               2 4.262680 2.8903718 1.3862944
## 3828                               2 4.317488 3.2580965 0.6931472
## 3829                               3 5.616771 1.9459101 1.0986123
## 3830                               1 5.521461 0.0000000 0.0000000
## 3831                               1 5.298317 4.8598124 0.6931472
## 3832                               1 4.499810 1.0986123 3.4011974
## 3833                               2 3.912023 0.6931472 1.3862944
## 3834                               1 4.820282 4.1743873 1.3862944
## 3835                               1 3.912023 3.6109179 1.6094379
## 3836                               1 4.317488 0.0000000 0.6931472
## 3837                               1 4.499810 0.0000000 1.3862944
## 3838                               1 4.867534 4.5217886 1.0986123
## 3839                               1 4.941642 2.9444390 0.0000000
## 3840                               1 5.298317 0.6931472 1.0986123
## 3841                               1 5.857933 1.7917595 1.6094379
## 3842                               1 4.605170 3.1354942 0.6931472
## 3843                               1 5.416100 0.0000000 0.0000000
## 3844                               2 4.174387 1.0986123 0.0000000
## 3845                               2 4.976734 5.1416636 1.6094379
## 3846                               1 5.241747 2.6390573 1.6094379
## 3847                               1 5.579730 1.7917595 1.0986123
## 3848                               1 6.013715 1.0986123 0.0000000
## 3849                               1 4.553877 2.4849066 1.3862944
## 3850                               1 5.164786 4.4886364 1.0986123
## 3851                               5 4.007333 4.7449321 0.0000000
## 3852                               1 5.298317 3.5835189 1.3862944
## 3853                               1 5.298317 3.9318256 1.6094379
## 3854                               4 4.234107 5.0689042 0.0000000
## 3855                               1 4.905275 3.4965076 1.6094379
## 3856                               1 5.783825 2.4849066 1.3862944
## 3857                               1 4.553877 5.5872487 0.6931472
## 3858                              29 4.762174 1.0986123 3.4011974
## 3859                               2 4.077537 4.1743873 3.4011974
## 3860                               4 4.442651 4.1743873 0.6931472
## 3861                               4 4.007333 3.9318256 0.0000000
## 3862                               1 4.382027 5.8550719 0.6931472
## 3863                               1 4.744932 0.6931472 2.5649494
## 3864                               1 4.356709 3.7612001 2.4849066
## 3865                               3 5.010635 3.6375862 1.0986123
## 3866                               1 5.273000 1.0986123 1.6094379
## 3867                               1 4.955827 2.0794415 2.3025851
## 3868                               1 4.007333 2.3025851 1.9459101
## 3869                               1 4.574711 1.6094379 3.4011974
## 3870                               1 4.248495 2.3978953 2.9957323
## 3871                               1 4.248495 5.4161004 0.0000000
## 3872                               1 5.043425 3.1780538 1.6094379
## 3873                               1 4.219508 1.0986123 3.4011974
## 3874                               1 4.219508 3.4339872 2.1972246
## 3875                               1 5.010635 3.9512437 0.6931472
## 3876                               1 5.010635 0.0000000 1.7917595
## 3877                               1 4.605170 0.0000000 0.0000000
## 3878                               2 4.700480 4.6151205 3.4011974
## 3879                               1 5.010635 0.0000000 1.0986123
## 3880                               1 5.384495 3.9702919 1.7917595
## 3881                               4 6.063785 3.1780538 0.0000000
## 3882                               2 4.369448 4.7449321 1.0986123
## 3883                               1 4.787492 4.0604430 0.0000000
## 3884                               1 5.298317 3.7376696 1.6094379
## 3885                               3 4.787492 2.4849066 1.6094379
## 3886                               3 5.298317 3.3322045 3.4011974
## 3887                               1 4.317488 0.0000000 0.0000000
## 3888                               1 5.164786 0.6931472 0.0000000
## 3889                               1 4.330733 0.0000000 3.4339872
## 3890                               1 4.317488 0.6931472 0.0000000
## 3891                               2 5.991465 3.0910425 3.4011974
## 3892                               4 4.317488 3.8712010 0.0000000
## 3893                               1 5.241747 0.0000000 1.0986123
## 3894                               1 4.007333 0.0000000 0.0000000
## 3895                               1 4.382027 2.3978953 1.6094379
## 3896                               1 4.234107 2.9444390 1.0986123
## 3897                               1 4.605170 0.0000000 1.3862944
## 3898                               1 4.605170 0.0000000 0.0000000
## 3899                               1 5.703782 2.9444390 1.6094379
## 3900                               2 3.970292 5.3423343 1.0986123
## 3901                               1 5.187386 2.7080502 0.6931472
## 3902                               1 4.867534 3.8066625 1.3862944
## 3903                               2 4.787492 4.4886364 1.3862944
## 3904                               1 5.010635 3.2188758 1.9459101
## 3905                              29 4.653960 1.6094379 3.4011974
## 3906                               3 5.010635 5.2832037 0.0000000
## 3907                               1 5.298317 0.0000000 0.0000000
## 3908                               6 3.663562 2.8903718 3.4011974
## 3909                               1 4.204693 1.7917595 1.6094379
## 3910                               1 5.298317 1.9459101 1.3862944
## 3911                              52 4.859812 1.0986123 3.4011974
## 3912                              15 4.007333 4.2046926 0.0000000
## 3913                               1 4.174387 3.4011974 3.9120230
## 3914                               1 4.605170 2.8903718 1.0986123
## 3915                               1 5.480639 0.0000000 0.0000000
## 3916                               1 5.010635 3.4965076 1.0986123
## 3917                               1 5.700444 5.0434251 0.6931472
## 3918                               1 5.075174 5.1647860 0.6931472
## 3919                              52 5.293305 1.6094379 3.4011974
## 3920                               1 4.605170 3.5263605 0.0000000
## 3921                               1 3.806662 4.7874917 1.3862944
## 3922                               4 3.784190 4.9052748 0.6931472
## 3923                               1 5.220356 1.3862944 1.6094379
## 3924                               2 6.476972 4.2046926 0.6931472
## 3925                               1 4.605170 2.3978953 0.6931472
## 3926                               1 4.709530 4.6443909 1.0986123
## 3927                               8 4.595120 2.0794415 3.4011974
## 3928                               1 4.317488 2.8903718 1.9459101
## 3929                              29 4.634729 1.0986123 3.4011974
## 3930                               1 4.867534 4.0253517 1.3862944
## 3931                               8 4.691348 2.9957323 3.4011974
## 3932                               1 4.605170 1.0986123 1.6094379
## 3933                               1 5.043425 1.6094379 3.3672958
## 3934                               1 4.094345 4.0073332 0.6931472
## 3935                               1 5.273000 2.3978953 1.7917595
## 3936                               1 4.234107 4.3567088 1.7917595
## 3937                               1 4.276666 4.1743873 0.6931472
## 3938                               1 5.703782 2.5649494 0.6931472
## 3939                              29 4.779123 1.3862944 3.4011974
## 3940                               1 4.605170 1.6094379 3.4011974
## 3941                              11 5.293305 4.2766661 0.0000000
## 3942                               2 4.317488 1.0986123 0.0000000
## 3943                               2 4.605170 4.1271344 3.0445224
## 3944                               2 4.828314 3.2958369 0.6931472
## 3945                               1 4.553877 3.2188758 1.6094379
## 3946                               3 5.686975 4.7004804 0.6931472
## 3947                               1 5.003946 2.3025851 0.0000000
## 3948                               1 5.010635 1.7917595 2.3025851
## 3949                               1 4.605170 5.1761497 1.6094379
## 3950                               1 5.953243 3.7841896 1.6094379
## 3951                               2 4.465908 4.8828019 0.6931472
## 3952                               1 5.192957 1.6094379 1.3862944
## 3953                               4 4.077537 3.8712010 0.6931472
## 3954                               1 4.553877 5.4553211 0.6931472
## 3955                               1 4.867534 1.0986123 3.2188758
## 3956                               1 4.787492 4.9126549 1.6094379
## 3957                               1 4.727388 5.5412635 0.6931472
## 3958                               4 4.094345 4.9052748 0.0000000
## 3959                               1 3.688879 2.7725887 1.9459101
## 3960                               1 5.521461 0.6931472 1.6094379
## 3961                               1 5.003946 0.6931472 1.7917595
## 3962                               1 5.129899 3.4965076 1.3862944
## 3963                               1 4.653960 4.4773368 0.6931472
## 3964                               1 3.737670 1.7917595 1.9459101
## 3965                               1 5.298317 2.1972246 0.0000000
## 3966                               2 5.075174 3.7841896 0.0000000
## 3967                               1 5.043425 3.7376696 0.6931472
## 3968                               5 5.017280 3.5263605 1.0986123
## 3969                               1 5.298317 0.0000000 0.0000000
## 3970                               1 4.382027 2.1972246 0.6931472
## 3971                               1 4.779123 0.6931472 1.0986123
## 3972                               1 8.517193 2.3025851 1.7917595
## 3973                               2 3.806662 4.5108595 0.0000000
## 3974                               1 4.744932 1.6094379 1.9459101
## 3975                               3 4.174387 4.0253517 0.0000000
## 3976                               1 4.465908 2.1972246 1.3862944
## 3977                               1 4.700480 2.1972246 2.6390573
## 3978                               1 4.382027 4.2626799 0.6931472
## 3979                               1 4.143135 4.1743873 1.3862944
## 3980                               2 5.298317 3.6109179 1.6094379
## 3981                               1 5.220356 2.1972246 1.0986123
## 3982                               1 5.521461 2.8903718 0.6931472
## 3983                               1 4.867534 4.0430513 0.6931472
## 3984                               1 5.220356 4.1743873 1.3862944
## 3985                               1 4.317488 1.6094379 0.6931472
## 3986                               2 5.480639 5.4337220 1.3862944
## 3987                               1 4.174387 1.3862944 0.0000000
## 3988                               1 5.273000 3.4657359 0.6931472
## 3989                               1 5.298317 3.8286414 0.0000000
## 3990                               1 4.787492 5.3423343 0.6931472
## 3991                               1 5.192957 5.2094862 0.0000000
## 3992                               2 3.970292 4.4886364 1.0986123
## 3993                               1 5.298317 2.3025851 0.0000000
## 3994                               1 4.605170 4.0943446 1.0986123
## 3995                               1 4.454347 4.1271344 1.0986123
## 3996                               1 5.416100 1.7917595 1.0986123
## 3997                               2 3.688879 4.9126549 1.0986123
## 3998                               1 4.094345 2.1972246 5.8998974
## 3999                               1 4.248495 2.5649494 0.0000000
## 4000                              18 3.555348 0.0000000 3.4011974
## 4001                               1 5.521461 4.9126549 1.0986123
## 4002                              11 8.411833 1.6094379 0.0000000
## 4003                              11 8.987197 0.0000000 0.0000000
## 4004                               2 5.541264 4.0943446 0.6931472
## 4005                               1 5.669881 4.3438054 0.0000000
## 4006                               1 4.744932 2.3978953 1.9459101
## 4007                               1 5.700444 2.5649494 1.0986123
## 4008                               1 5.075174 2.5649494 0.6931472
## 4009                               1 5.164786 0.0000000 0.0000000
## 4010                               1 4.787492 5.8998974 0.0000000
## 4011                              11 5.187386 2.0794415 0.0000000
## 4012                               2 4.304065 4.6634391 1.3862944
## 4013                               2 4.219508 5.0238805 0.0000000
## 4014                               1 5.459586 3.5263605 0.0000000
## 4015                               1 4.605170 0.6931472 1.6094379
## 4016                               1 5.598422 2.5649494 1.0986123
## 4017                               1 5.298317 0.6931472 2.6390573
## 4018                               2 4.094345 0.6931472 0.6931472
## 4019                               1 5.043425 3.7841896 1.3862944
## 4020                               1 4.553877 5.5984220 0.0000000
## 4021                               1 4.828314 2.3978953 0.6931472
## 4022                              29 4.770685 0.0000000 3.4011974
## 4023                               1 4.382027 4.5538769 1.9459101
## 4024                               2 5.347108 1.3862944 1.0986123
## 4025                               1 5.010635 2.3025851 0.6931472
## 4026                               1 4.905275 4.8903491 0.6931472
## 4027                              29 4.770685 1.0986123 3.4011974
## 4028                               2 4.700480 3.6888795 1.0986123
## 4029                               1 4.248495 2.0794415 0.6931472
## 4030                               2 3.761200 4.8441871 0.0000000
## 4031                               1 4.941642 5.3230100 0.6931472
## 4032                              29 4.753590 0.0000000 3.4011974
## 4033                              52 5.068904 1.7917595 3.4011974
## 4034                               1 4.905275 5.6903595 0.6931472
## 4035                               6 3.663562 2.5649494 1.9459101
## 4036                               1 4.077537 2.7725887 2.9957323
## 4037                               1 6.396930 0.6931472 3.4011974
## 4038                               2 4.189655 1.7917595 0.0000000
## 4039                              52 4.867534 0.6931472 3.4011974
## 4040                               1 4.605170 5.6489742 1.0986123
## 4041                               1 3.912023 0.0000000 1.9459101
## 4042                               1 5.220356 3.5263605 0.6931472
## 4043                               1 3.988984 1.3862944 0.0000000
## 4044                               1 4.605170 0.6931472 1.7917595
## 4045                               1 5.192957 1.7917595 0.0000000
## 4046                               1 4.744932 3.7612001 3.4011974
## 4047                               1 5.857933 2.3978953 1.0986123
## 4048                               3 3.465736 1.0986123 1.9459101
## 4049                               1 5.105945 3.1354942 2.0794415
## 4050                               1 5.857933 2.4849066 0.6931472
## 4051                               1 5.298317 2.7080502 1.3862944
## 4052                               1 5.164786 1.6094379 1.6094379
## 4053                               2 3.912023 4.0604430 0.6931472
## 4054                               1 5.247024 2.3978953 0.0000000
## 4055                               1 4.700480 3.6109179 0.6931472
## 4056                               1 6.025866 0.6931472 1.0986123
## 4057                              52 5.010635 0.6931472 3.4011974
## 4058                              19 4.532599 2.3025851 5.8998974
## 4059                               1 5.164786 3.0910425 1.0986123
## 4060                               1 5.043425 1.0986123 3.2188758
## 4061                              52 4.859812 1.3862944 3.4011974
## 4062                               3 3.912023 3.0445224 0.0000000
## 4063                               1 6.212606 0.6931472 1.9459101
## 4064                               1 4.382027 1.9459101 0.0000000
## 4065                               1 3.850148 2.6390573 0.6931472
## 4066                               1 4.553877 0.0000000 0.0000000
## 4067                               1 5.517453 5.0106353 0.0000000
## 4068                              52 5.010635 0.6931472 3.4011974
## 4069                               1 4.343805 4.9344739 1.0986123
## 4070                               1 4.248495 2.7725887 2.6390573
## 4071                              52 4.605170 1.7917595 3.4011974
## 4072                              52 4.465908 1.7917595 3.4011974
## 4073                               1 5.501258 1.0986123 1.3862944
## 4074                               1 5.703782 4.5217886 1.0986123
## 4075                               1 4.007333 0.6931472 0.0000000
## 4076                               1 4.787492 1.6094379 1.0986123
## 4077                               6 3.688879 0.6931472 3.4339872
## 4078                               1 4.744932 2.1972246 0.6931472
## 4079                              19 4.532599 2.7725887 4.3174881
## 4080                               1 3.610918 0.0000000 3.4011974
## 4081                               1 5.480639 2.8903718 0.6931472
## 4082                               1 4.248495 4.9767337 1.0986123
## 4083                              52 5.003946 1.6094379 3.4011974
## 4084                               2 4.605170 2.3025851 3.0445224
## 4085                               1 5.298317 2.4849066 0.6931472
## 4086                               1 4.595120 3.7612001 1.3862944
## 4087                               1 5.393628 1.6094379 2.0794415
## 4088                               1 5.521461 1.0986123 1.0986123
## 4089                              29 4.634729 2.4849066 3.4011974
## 4090                              29 4.682131 1.9459101 3.4011974
## 4091                               3 4.317488 1.6094379 1.0986123
## 4092                               2 4.356709 2.3025851 1.0986123
## 4093                               1 4.317488 1.7917595 1.3862944
## 4094                               1 5.023881 1.0986123 0.6931472
## 4095                               1 5.010635 3.4657359 0.0000000
## 4096                               1 5.768321 5.1239640 1.0986123
## 4097                               1 5.393628 1.3862944 3.3672958
## 4098                               3 4.595120 5.2470241 0.6931472
## 4099                               2 6.856462 3.7376696 1.0986123
## 4100                               1 4.787492 0.0000000 0.0000000
## 4101                               1 4.605170 1.6094379 0.0000000
## 4102                               1 5.293305 1.3862944 1.3862944
## 4103                               1 4.605170 5.5490761 0.0000000
## 4104                               2 4.317488 3.9512437 0.0000000
## 4105                              52 4.430817 1.9459101 3.4011974
## 4106                               1 4.605170 0.0000000 2.6390573
## 4107                               4 4.317488 4.4426513 1.0986123
## 4108                               1 4.532599 4.6821312 1.7917595
## 4109                               2 4.941642 4.1588831 1.3862944
## 4110                               2 5.298317 3.6375862 3.4011974
## 4111                               1 5.298317 0.6931472 0.6931472
## 4112                               1 5.298317 2.6390573 0.6931472
## 4113                               1 4.605170 0.0000000 0.0000000
## 4114                               1 4.605170 4.5108595 5.5214609
## 4115                               1 4.787492 4.6051702 1.9459101
## 4116                               1 4.691348 0.6931472 0.6931472
## 4117                               2 4.836282 2.7080502 0.6931472
## 4118                               1 3.912023 0.6931472 0.6931472
## 4119                               1 5.783825 1.7917595 1.3862944
## 4120                               1 4.905275 1.3862944 1.6094379
## 4121                               1 3.951244 0.0000000 0.6931472
## 4122                               1 4.820282 2.5649494 3.3322045
## 4123                               1 4.077537 3.5553481 1.0986123
## 4124                               1 5.370638 2.0794415 0.6931472
## 4125                               2 5.480639 2.0794415 0.6931472
## 4126                               2 5.010635 0.6931472 0.0000000
## 4127                               1 4.418841 0.6931472 0.6931472
## 4128                               1 5.075174 1.7917595 0.6931472
## 4129                               1 5.298317 2.0794415 0.0000000
## 4130                               1 3.912023 1.3862944 1.9459101
## 4131                              52 4.465908 2.0794415 3.4011974
## 4132                               1 5.521461 3.0910425 1.6094379
## 4133                               1 5.087596 4.8121844 0.6931472
## 4134                               2 4.990433 3.2188758 0.0000000
## 4135                               1 5.003946 5.4161004 0.6931472
## 4136                               1 4.174387 1.7917595 1.6094379
## 4137                               1 5.521461 0.6931472 1.6094379
## 4138                               2 5.075174 5.0498560 0.6931472
## 4139                               1 5.010635 2.3025851 1.6094379
## 4140                               1 4.158883 3.8501476 1.0986123
## 4141                               2 3.496508 5.2040067 0.6931472
## 4142                               3 6.214608 1.0986123 0.0000000
## 4143                               1 5.010635 4.0073332 1.0986123
## 4144                               1 4.700480 0.6931472 2.6390573
## 4145                               2 4.976734 4.7791235 0.6931472
## 4146                               2 4.553877 2.3025851 1.0986123
## 4147                               1 5.220356 4.0943446 1.6094379
## 4148                               2 6.214608 3.3322045 0.0000000
## 4149                               1 4.744932 0.6931472 1.0986123
## 4150                               1 5.273000 4.6539604 1.0986123
## 4151                               1 4.653960 1.6094379 3.0445224
## 4152                               1 4.204693 2.3025851 3.4011974
## 4153                               1 4.317488 0.0000000 0.0000000
## 4154                               1 4.605170 1.3862944 0.0000000
## 4155                               1 4.828314 4.0253517 1.9459101
## 4156                               2 5.857933 0.6931472 0.6931472
## 4157                               1 5.010635 2.4849066 0.0000000
## 4158                               1 5.298317 3.0910425 1.6094379
## 4159                               1 5.598422 1.7917595 1.0986123
## 4160                               1 5.214936 3.0910425 1.6094379
## 4161                               1 5.616771 2.9444390 1.3862944
## 4162                               1 5.141664 0.0000000 0.6931472
## 4163                               1 5.298317 1.3862944 1.3862944
## 4164                               1 5.105945 1.9459101 1.0986123
## 4165                               3 4.442651 3.1354942 0.6931472
## 4166                               1 5.135798 2.9957323 1.9459101
## 4167                               1 4.248495 4.2341065 1.0986123
## 4168                               1 4.828314 3.5835189 0.6931472
## 4169                               1 5.616771 4.1431347 1.0986123
## 4170                               2 4.787492 2.0794415 0.6931472
## 4171                               1 5.416100 0.6931472 1.3862944
## 4172                               1 4.779123 5.3798974 0.6931472
## 4173                               1 5.164786 1.7917595 1.0986123
## 4174                               5 5.043425 3.7841896 1.0986123
## 4175                               1 4.605170 0.0000000 1.0986123
## 4176                               1 4.248495 2.7725887 1.0986123
## 4177                               4 4.553877 4.0604430 1.0986123
## 4178                               1 6.109248 2.4849066 0.6931472
## 4179                               1 5.370638 3.3322045 1.6094379
## 4180                               2 4.094345 1.3862944 1.0986123
## 4181                               1 4.317488 3.5553481 1.6094379
## 4182                               2 4.595120 3.0910425 1.0986123
## 4183                               2 5.703782 4.4426513 0.6931472
## 4184                               2 5.164786 4.9558271 0.6931472
## 4185                               1 5.273000 2.0794415 1.0986123
## 4186                               1 3.912023 0.6931472 1.9459101
## 4187                               1 5.164786 0.0000000 1.3862944
## 4188                               2 4.787492 5.1647860 1.6094379
## 4189                               1 3.988984 2.3978953 2.3025851
## 4190                               1 5.843544 4.9487599 1.0986123
## 4191                               3 5.416100 4.3307333 1.0986123
## 4192                               1 5.017280 2.4849066 3.3322045
## 4193                               4 4.700480 5.2417470 0.0000000
## 4194                               1 5.634790 2.8332133 0.6931472
## 4195                               1 4.595120 4.3174881 0.0000000
## 4196                               1 5.857933 2.0794415 1.0986123
## 4197                               1 4.787492 5.3659760 1.0986123
## 4198                               2 4.488636 5.4424177 1.0986123
## 4199                               1 4.787492 0.0000000 1.0986123
## 4200                               1 4.442651 4.9558271 1.6094379
## 4201                               1 5.393628 4.7791235 0.6931472
## 4202                               3 4.828314 2.8332133 1.9459101
## 4203                               1 5.241747 1.0986123 0.0000000
## 4204                               1 4.394449 2.1972246 1.0986123
## 4205                               1 3.806662 4.9126549 0.6931472
## 4206                               1 4.127134 3.6109179 1.0986123
## 4207                               2 5.799093 4.8040210 0.6931472
## 4208                               1 4.382027 2.3025851 0.6931472
## 4209                               1 4.174387 2.1972246 0.6931472
## 4210                               1 4.828314 1.0986123 1.7917595
## 4211                               1 5.105945 5.1474945 0.6931472
## 4212                               1 4.499810 1.0986123 1.3862944
## 4213                               1 4.787492 2.0794415 1.0986123
## 4214                               1 4.744932 1.7917595 1.9459101
## 4215                               1 4.007333 3.8501476 0.0000000
## 4216                               4 4.007333 4.7449321 0.0000000
## 4217                               1 5.991465 3.5263605 1.7917595
## 4218                               1 5.298317 1.0986123 1.6094379
## 4219                               1 4.709530 3.8066625 0.6931472
## 4220                               1 5.164786 2.4849066 1.0986123
## 4221                               1 5.010635 3.4339872 0.6931472
## 4222                               8 3.951244 2.8332133 1.9459101
## 4223                               1 4.477337 0.6931472 3.4011974
## 4224                               1 6.052089 1.6094379 1.7917595
## 4225                               1 5.164786 0.6931472 0.0000000
## 4226                               1 4.653960 3.2580965 2.6390573
## 4227                               1 5.579730 2.3025851 0.6931472
## 4228                               3 4.094345 2.7080502 0.6931472
## 4229                               1 3.806662 2.5649494 1.0986123
## 4230                               1 4.488636 1.9459101 0.6931472
## 4231                               1 5.298317 4.6249728 1.3862944
## 4232                               1 5.003946 0.6931472 0.0000000
## 4233                               1 4.382027 4.8978398 0.0000000
## 4234                               2 4.828314 5.0369526 0.0000000
## 4235                               1 4.356709 2.5649494 1.6094379
## 4236                               2 4.174387 5.0238805 0.6931472
## 4237                               1 5.857933 1.6094379 1.9459101
## 4238                               1 5.666427 0.0000000 0.6931472
## 4239                              21 5.062595 0.0000000 3.4011974
## 4240                               1 3.912023 1.7917595 0.6931472
## 4241                               1 5.455321 1.6094379 1.3862944
## 4242                               1 4.234107 0.6931472 1.6094379
## 4243                               1 4.905275 2.8903718 0.0000000
## 4244                               1 4.488636 4.2904594 1.0986123
## 4245                               1 2.772589 3.0445224 0.6931472
## 4246                               2 5.703782 3.4657359 0.0000000
## 4247                               1 5.521461 3.8918203 1.6094379
## 4248                               1 4.248495 1.6094379 0.0000000
## 4249                               1 4.941642 4.7706846 1.0986123
## 4250                               1 5.164786 2.8903718 1.0986123
## 4251                               1 5.075174 0.6931472 1.0986123
## 4252                               1 4.043051 2.3978953 1.9459101
## 4253                               1 4.499810 0.6931472 1.0986123
## 4254                               5 4.488636 3.6888795 0.6931472
## 4255                               1 4.499810 3.0910425 1.3862944
## 4256                               1 5.298317 3.8712010 1.3862944
## 4257                               2 4.605170 3.9512437 0.6931472
## 4258                               5 4.219508 2.6390573 3.4011974
## 4259                               1 5.135798 2.6390573 1.3862944
## 4260                               3 3.688879 2.5649494 3.3322045
## 4261                               3 6.214608 1.7917595 1.3862944
## 4262                               1 4.976734 2.5649494 1.0986123
## 4263                               2 5.521461 2.7725887 1.0986123
## 4264                               1 5.662960 2.6390573 1.9459101
## 4265                               1 5.501258 2.8903718 1.0986123
## 4266                               1 4.382027 2.4849066 1.0986123
## 4267                               1 4.828314 1.6094379 1.6094379
## 4268                               1 5.111988 2.8903718 2.6390573
## 4269                               1 5.799093 2.3978953 1.3862944
## 4270                               2 4.094345 1.7917595 1.6094379
## 4271                               1 4.867534 1.0986123 0.0000000
## 4272                               1 3.806662 1.3862944 3.4011974
## 4273                               1 5.105945 5.0689042 1.0986123
## 4274                               1 5.043425 2.6390573 0.6931472
## 4275                               1 4.779123 0.0000000 4.0943446
## 4276                               1 5.062595 2.4849066 1.0986123
## 4277                               1 5.129899 3.9318256 1.6094379
## 4278                               1 4.934474 4.8202816 0.6931472
## 4279                               1 4.828314 1.9459101 1.3862944
## 4280                               1 4.248495 3.2188758 1.0986123
## 4281                               3 4.905275 5.1532916 0.0000000
## 4282                               8 4.595120 2.0794415 3.4011974
## 4283                               1 5.521461 3.4011974 1.0986123
## 4284                               2 4.605170 1.6094379 3.4011974
## 4285                               1 4.852030 4.4886364 1.0986123
## 4286                               2 4.795791 2.0794415 2.4849066
## 4287                               2 5.075174 3.5835189 3.4011974
## 4288                               1 5.616771 3.4011974 1.6094379
## 4289                               1 5.192957 1.0986123 1.0986123
## 4290                               1 5.241747 4.9272537 0.6931472
## 4291                               1 4.595120 4.9972123 0.6931472
## 4292                               1 5.298317 4.7874917 1.6094379
## 4293                               2 4.976734 4.7449321 1.3862944
## 4294                               1 4.605170 4.1588831 1.0986123
## 4295                               1 5.480639 3.0910425 0.0000000
## 4296                               1 4.499810 3.9512437 1.0986123
## 4297                               1 5.393628 4.0073332 0.6931472
## 4298                               6 4.605170 4.1271344 2.9957323
## 4299                               3 4.077537 4.9558271 0.0000000
## 4300                               3 4.356709 4.3944492 3.4011974
## 4301                               2 4.317488 4.4426513 0.6931472
## 4302                               1 4.356709 4.4543473 1.0986123
## 4303                               1 5.521461 1.3862944 0.0000000
## 4304                               1 3.784190 0.6931472 0.0000000
## 4305                               2 4.234107 3.2188758 0.6931472
## 4306                               1 4.499810 1.3862944 1.9459101
## 4307                               1 4.828314 2.3025851 1.3862944
## 4308                               1 4.356709 2.3978953 2.8903718
## 4309                               1 6.665684 4.4426513 0.6931472
## 4310                               4 4.595120 5.0751738 1.0986123
## 4311                               1 4.304065 2.1972246 3.4011974
## 4312                               1 4.867534 0.6931472 1.3862944
## 4313                               1 4.653960 5.3752784 0.6931472
## 4314                               1 4.976734 1.7917595 1.9459101
## 4315                               2 4.499810 4.9836066 0.0000000
## 4316                               1 5.370638 2.6390573 1.3862944
## 4317                               1 4.605170 0.0000000 1.0986123
## 4318                               2 4.521789 5.2574954 1.6094379
## 4319                               1 5.220356 1.6094379 3.3672958
## 4320                               1 5.075174 2.3978953 1.3862944
## 4321                              19 4.532599 2.4849066 4.7004804
## 4322                              39 5.703782 2.5649494 3.4011974
## 4323                               3 4.317488 1.0986123 0.0000000
## 4324                               1 5.913503 2.0794415 0.0000000
## 4325                               1 6.052089 1.3862944 0.6931472
## 4326                              11 5.298317 1.3862944 3.4011974
## 4327                               1 4.828314 4.0073332 0.6931472
## 4328                               1 5.187386 0.0000000 2.3025851
## 4329                               1 3.828641 4.0073332 0.6931472
## 4330                               1 5.010635 3.6109179 1.6094379
## 4331                               2 3.951244 3.6109179 1.3862944
## 4332                               1 4.382027 0.0000000 0.0000000
## 4333                               1 4.787492 1.3862944 0.6931472
## 4334                               2 5.703782 2.0794415 1.6094379
## 4335                               1 4.700480 0.0000000 0.6931472
## 4336                               1 5.298317 1.3862944 0.0000000
## 4337                               1 4.317488 2.1972246 1.6094379
## 4338                               1 5.298317 3.8918203 1.6094379
## 4339                               1 5.703782 2.3978953 1.0986123
## 4340                               1 3.091042 1.0986123 2.3025851
## 4341                              52 4.859812 2.7080502 3.4011974
## 4342                               1 4.828314 1.3862944 1.9459101
## 4343                               1 5.220356 2.8903718 1.6094379
## 4344                               1 5.062595 2.8332133 1.3862944
## 4345                               1 5.755742 3.3672958 1.0986123
## 4346                               1 5.164786 5.1704840 1.0986123
## 4347                               1 4.574711 3.4965076 1.0986123
## 4348                               1 5.164786 0.0000000 0.0000000
## 4349                               1 4.276666 1.7917595 1.0986123
## 4350                               1 5.164786 4.4067192 1.6094379
## 4351                               1 4.442651 0.0000000 1.6094379
## 4352                               4 5.010635 4.0943446 0.0000000
## 4353                               2 5.416100 5.5490761 0.6931472
## 4354                               1 5.991465 1.6094379 1.9459101
## 4355                               1 4.828314 2.6390573 1.3862944
## 4356                               1 5.298317 5.0304379 1.0986123
## 4357                               1 4.488636 2.3025851 2.3025851
## 4358                               1 5.105945 3.2188758 0.6931472
## 4359                               2 5.652489 4.4886364 0.0000000
## 4360                               1 5.010635 3.2580965 1.3862944
## 4361                               2 4.248495 2.3025851 0.6931472
## 4362                               9 5.703782 1.0986123 3.4011974
## 4363                               1 5.393628 1.0986123 1.6094379
## 4364                               1 5.517453 1.7917595 1.0986123
## 4365                               4 4.234107 2.8903718 1.0986123
## 4366                               1 4.787492 4.3438054 3.4011974
## 4367                               2 4.234107 4.0943446 0.6931472
## 4368                               4 3.988984 3.0445224 1.6094379
## 4369                               4 3.912023 3.1780538 1.6094379
## 4370                               4 3.931826 2.9957323 1.7917595
## 4371                               1 4.595120 2.3025851 1.0986123
## 4372                               1 5.669881 0.0000000 1.9459101
## 4373                               4 3.891820 4.7361984 0.6931472
## 4374                               1 4.744932 1.7917595 1.0986123
## 4375                               1 4.356709 4.0943446 3.0445224
## 4376                               1 4.828314 3.2188758 1.9459101
## 4377                               2 4.905275 5.4161004 1.0986123
## 4378                               1 5.323010 2.0794415 0.6931472
## 4379                               1 4.553877 3.5835189 3.4011974
## 4380                               1 4.007333 5.4161004 1.0986123
## 4381                               1 3.850148 4.7706846 0.6931472
## 4382                               2 3.663562 3.8712010 1.3862944
## 4383                               1 5.855072 2.9444390 1.6094379
## 4384                               1 5.521461 1.9459101 0.0000000
## 4385                               1 5.669881 4.4998097 1.9459101
## 4386                               3 4.442651 4.4188406 0.0000000
## 4387                               1 5.135798 0.0000000 0.6931472
## 4388                               1 4.983607 3.9120230 2.3978953
## 4389                               1 4.595120 1.9459101 0.6931472
## 4390                               1 5.010635 3.2188758 1.0986123
## 4391                               1 5.480639 4.4659081 0.6931472
## 4392                               1 6.214608 3.8712010 0.6931472
## 4393                               1 3.871201 3.4965076 0.6931472
## 4394                               1 4.859812 3.0445224 0.0000000
## 4395                               1 6.620073 2.7725887 1.0986123
## 4396                               1 5.192957 2.1972246 1.6094379
## 4397                               1 4.248495 0.0000000 1.0986123
## 4398                               1 5.480639 0.0000000 0.0000000
## 4399                               1 4.605170 2.3025851 1.6094379
## 4400                               1 4.804021 1.9459101 3.4011974
## 4401                               2 5.991465 2.1972246 1.0986123
## 4402                               4 3.850148 4.3174881 0.6931472
## 4403                               1 4.941642 2.4849066 1.0986123
## 4404                               2 4.007333 5.4424177 0.0000000
## 4405                               1 4.700480 1.0986123 1.3862944
## 4406                               2 5.164786 0.0000000 1.0986123
## 4407                               1 4.382027 1.7917595 1.9459101
## 4408                               1 5.010635 1.3862944 0.6931472
## 4409                               1 5.298317 1.3862944 1.3862944
## 4410                               2 3.912023 0.0000000 2.3025851
## 4411                               2 4.595120 3.0445224 0.0000000
## 4412                               2 4.094345 2.3978953 1.9459101
## 4413                               1 5.416100 3.6635616 0.0000000
## 4414                               1 5.164786 1.6094379 1.0986123
## 4415                               1 4.094345 2.7725887 1.9459101
## 4416                               1 5.541264 0.0000000 0.6931472
## 4417                               2 4.317488 1.3862944 2.7080502
## 4418                               1 5.247024 0.6931472 1.0986123
## 4419                               3 6.204558 2.7080502 1.0986123
## 4420                               1 4.584967 2.3978953 1.6094379
## 4421                               1 5.370638 4.6728288 0.0000000
## 4422                               1 5.298317 1.9459101 1.6094379
## 4423                               1 4.605170 3.8066625 0.6931472
## 4424                               1 4.700480 0.0000000 0.0000000
## 4425                               2 4.744932 4.1588831 1.0986123
## 4426                               1 4.317488 1.0986123 0.0000000
## 4427                               1 5.666427 1.9459101 0.0000000
## 4428                               2 4.553877 5.3082677 0.0000000
## 4429                               1 5.283204 5.6524892 0.0000000
## 4430                               1 5.926926 1.7917595 1.0986123
## 4431                               1 4.025352 4.9767337 0.0000000
## 4432                               1 5.416100 2.7080502 2.7080502
## 4433                               1 4.248495 0.0000000 1.9459101
## 4434                              10 5.575949 1.7917595 3.4011974
## 4435                              10 5.293305 2.3978953 3.4011974
## 4436                               3 5.003946 2.9444390 0.6931472
## 4437                               2 4.955827 5.1298987 0.0000000
## 4438                               2 5.700444 4.0604430 1.3862944
## 4439                               1 3.912023 2.7080502 1.0986123
## 4440                               1 5.075174 6.1903154 0.0000000
## 4441                               1 4.844187 4.9558271 1.3862944
## 4442                               1 4.700480 3.6635616 1.0986123
## 4443                               3 4.234107 3.5835189 0.6931472
## 4444                               2 5.164786 1.3862944 1.0986123
## 4445                               1 5.187386 4.2766661 1.6094379
## 4446                               2 4.969813 3.9318256 0.0000000
## 4447                               1 5.010635 0.0000000 0.0000000
## 4448                               1 4.691348 5.3659760 0.6931472
## 4449                               1 4.317488 1.3862944 1.0986123
## 4450                               1 4.905275 1.0986123 1.0986123
## 4451                              18 3.637586 2.0794415 3.4011974
## 4452                               1 5.273000 5.4424177 0.6931472
## 4453                               2 4.983607 4.5108595 1.0986123
## 4454                               1 5.762051 2.9444390 1.6094379
## 4455                               2 4.941642 4.8903491 0.6931472
## 4456                              12 4.442651 4.9767337 0.0000000
## 4457                               1 5.135798 0.0000000 0.0000000
## 4458                               1 4.605170 0.6931472 0.6931472
## 4459                               1 5.857933 2.0794415 1.3862944
## 4460                               1 5.293305 3.2188758 1.0986123
## 4461                               1 4.343805 2.8332133 1.7917595
## 4462                               1 4.382027 0.6931472 0.0000000
## 4463                               1 4.369448 2.3978953 0.6931472
## 4464                               1 6.309918 1.6094379 1.0986123
## 4465                               1 5.043425 1.9459101 1.6094379
## 4466                               1 5.616771 2.4849066 3.4011974
## 4467                               1 4.779123 2.3025851 0.6931472
## 4468                               1 4.442651 1.6094379 2.9957323
## 4469                               1 4.499810 4.8441871 0.6931472
## 4470                               1 4.905275 3.9702919 1.6094379
## 4471                               1 4.499810 5.4380793 1.0986123
## 4472                               1 5.010635 1.6094379 0.0000000
## 4473                               3 3.637586 4.3307333 1.0986123
## 4474                              52 4.465908 1.3862944 3.4011974
## 4475                               1 5.347108 1.0986123 1.6094379
## 4476                               1 4.382027 3.9120230 0.6931472
## 4477                               1 5.521461 2.9957323 1.0986123
## 4478                               1 5.164786 2.8903718 0.0000000
## 4479                               2 4.174387 3.9512437 0.0000000
## 4480                               1 4.941642 3.8712010 0.0000000
## 4481                               1 4.859812 2.8332133 1.3862944
## 4482                               1 5.068904 3.8066625 1.3862944
## 4483                               1 5.517453 3.7841896 1.0986123
## 4484                               5 5.017280 3.9512437 1.6094379
## 4485                               1 4.369448 4.2484952 1.3862944
## 4486                               1 4.828314 2.3025851 1.0986123
## 4487                               1 4.905275 4.3307333 1.6094379
## 4488                               2 5.017280 1.6094379 0.6931472
## 4489                               1 6.396930 4.2904594 1.0986123
## 4490                               1 4.077537 4.9558271 0.0000000
## 4491                               1 5.609472 4.4426513 1.3862944
## 4492                               2 4.248495 3.3322045 0.6931472
## 4493                               1 4.553877 0.6931472 0.0000000
## 4494                               4 5.988961 3.8918203 1.0986123
## 4495                               2 4.564348 5.8051350 0.0000000
## 4496                               1 4.700480 3.8501476 0.0000000
## 4497                               2 4.234107 5.5174529 0.6931472
## 4498                               3 4.442651 4.2046926 0.6931472
## 4499                               1 5.010635 4.7957905 0.6931472
## 4500                               1 5.135798 2.1972246 0.0000000
## 4501                               1 4.828314 2.4849066 1.6094379
## 4502                               1 4.867534 5.2522734 0.0000000
## 4503                               1 4.976734 5.8805330 0.0000000
## 4504                               1 6.214608 4.9272537 0.0000000
## 4505                               2 4.553877 5.0751738 1.0986123
## 4506                               2 5.010635 2.1972246 1.3862944
## 4507                               1 4.025352 5.1929569 0.6931472
## 4508                               1 4.094345 0.0000000 0.0000000
## 4509                               1 4.442651 3.6109179 1.0986123
## 4510                               1 4.382027 1.0986123 1.6094379
## 4511                               1 4.605170 2.7725887 1.0986123
## 4512                               2 3.988984 0.6931472 1.0986123
## 4513                               1 4.727388 3.6375862 1.3862944
## 4514                               1 5.298317 5.1647860 0.6931472
## 4515                               1 4.317488 1.6094379 1.6094379
## 4516                               1 5.298317 3.4339872 0.0000000
## 4517                               1 4.700480 1.3862944 3.4011974
## 4518                               4 6.214608 2.9444390 1.0986123
## 4519                               1 5.298317 2.6390573 0.0000000
## 4520                               2 4.234107 2.1972246 4.0943446
## 4521                               1 5.298317 4.1588831 1.6094379
## 4522                               3 4.941642 1.9459101 1.6094379
## 4523                               4 3.806662 3.6109179 1.3862944
## 4524                              19 4.248495 1.9459101 5.1929569
## 4525                               1 5.298317 4.1271344 0.6931472
## 4526                               1 5.730100 2.1972246 0.6931472
## 4527                               1 5.598422 2.0794415 1.6094379
## 4528                               1 5.899897 4.1271344 0.6931472
## 4529                               1 4.595120 4.4188406 0.0000000
## 4530                               1 5.164786 2.1972246 1.9459101
## 4531                               1 5.393628 4.0943446 1.3862944
## 4532                               2 4.382027 1.0986123 0.0000000
## 4533                               1 5.438079 1.9459101 0.6931472
## 4534                               1 4.094345 0.6931472 3.4011974
## 4535                               1 4.787492 0.0000000 2.6390573
## 4536                               4 3.806662 2.0794415 2.6390573
## 4537                               1 4.605170 3.9120230 1.3862944
## 4538                               1 4.605170 3.2188758 1.3862944
## 4539                               1 5.438079 3.3672958 0.0000000
## 4540                               1 5.416100 1.6094379 0.0000000
## 4541                               1 4.787492 4.0943446 0.6931472
## 4542                               3 4.595120 2.0794415 0.6931472
## 4543                               1 4.804021 5.0562458 0.0000000
## 4544                               1 5.010635 0.6931472 0.0000000
## 4545                               2 4.941642 5.6767538 0.6931472
## 4546                               1 5.010635 2.8903718 1.0986123
## 4547                              11 3.637586 4.3438054 3.4011974
## 4548                               1 5.298317 2.7725887 1.9459101
## 4549                               1 3.912023 2.4849066 0.0000000
## 4550                               8 3.806662 2.5649494 1.7917595
## 4551                               1 4.499810 0.0000000 3.4011974
## 4552                               1 4.442651 0.6931472 0.6931472
## 4553                               1 4.682131 4.3944492 0.6931472
## 4554                               1 4.859812 2.7080502 1.0986123
## 4555                               2 5.616771 5.1929569 0.6931472
## 4556                               9 4.997212 2.1972246 3.4011974
## 4557                               1 5.075174 1.6094379 0.6931472
## 4558                               2 4.867534 5.0106353 1.6094379
## 4559                               1 5.192957 5.2574954 1.0986123
## 4560                               1 3.912023 2.6390573 0.0000000
## 4561                               1 4.976734 4.1108739 1.7917595
## 4562                               1 4.543295 2.8332133 1.9459101
## 4563                               1 5.192957 3.1780538 0.6931472
## 4564                               1 4.382027 1.0986123 1.7917595
## 4565                               1 4.574711 2.7080502 1.0986123
## 4566                               1 4.499810 3.9318256 0.6931472
## 4567                               1 4.248495 4.0253517 0.6931472
## 4568                               1 4.787492 3.3672958 1.0986123
## 4569                               1 4.787492 4.7535902 1.0986123
## 4570                               3 4.077537 3.2580965 2.1972246
## 4571                               1 4.510860 3.4965076 1.0986123
## 4572                               1 5.214936 4.9836066 1.0986123
## 4573                               1 3.806662 2.5649494 0.0000000
## 4574                               1 5.010635 4.9904326 1.3862944
## 4575                               1 4.934474 3.1780538 1.0986123
## 4576                               1 4.174387 3.8066625 1.9459101
## 4577                               2 4.174387 2.5649494 0.6931472
## 4578                               1 5.010635 2.5649494 0.6931472
## 4579                               1 4.744932 1.6094379 0.6931472
## 4580                               1 5.700444 1.7917595 1.9459101
## 4581                               1 4.382027 4.6347290 0.6931472
## 4582                               1 4.382027 4.4773368 3.0445224
## 4583                               1 4.905275 2.6390573 0.0000000
## 4584                               1 4.382027 4.8040210 0.6931472
## 4585                               1 4.234107 1.3862944 0.0000000
## 4586                               8 4.317488 0.6931472 3.4011974
## 4587                               1 4.543295 3.2580965 2.3025851
## 4588                               1 5.257495 1.7917595 1.3862944
## 4589                               8 3.912023 1.0986123 3.0445224
## 4590                               8 4.060443 0.6931472 3.0445224
## 4591                               4 4.787492 3.2188758 1.7917595
## 4592                               2 4.234107 2.3978953 0.6931472
## 4593                               1 3.912023 0.6931472 1.3862944
## 4594                               1 4.828314 2.0794415 1.0986123
## 4595                               6 3.912023 2.6390573 3.4011974
## 4596                               1 4.442651 3.8501476 1.0986123
## 4597                               3 4.077537 5.1532916 0.0000000
## 4598                              29 4.867534 1.0986123 3.4011974
## 4599                               8 4.644391 2.3978953 3.4011974
## 4600                               3 4.553877 2.0794415 3.4011974
## 4601                               8 5.293305 3.6888795 1.6094379
## 4602                               2 4.653960 1.0986123 0.0000000
## 4603                               3 3.526361 4.3944492 1.7917595
## 4604                               1 4.787492 2.4849066 1.0986123
## 4605                               1 4.465908 2.3978953 1.7917595
## 4606                               2 4.828314 3.4011974 0.0000000
## 4607                               2 5.135798 3.7135721 0.6931472
## 4608                               1 5.521461 1.0986123 1.9459101
## 4609                               1 4.007333 1.0986123 0.0000000
## 4610                               1 4.382027 4.0430513 0.0000000
## 4611                               3 4.553877 2.3025851 3.4011974
## 4612                               3 5.010635 2.5649494 0.0000000
## 4613                               1 4.941642 3.3322045 1.6094379
## 4614                               1 5.010635 4.7621739 1.0986123
## 4615                               1 5.068904 0.0000000 1.0986123
## 4616                              19 4.553877 2.5649494 4.3174881
## 4617                              52 5.068904 1.0986123 3.4011974
## 4618                               1 4.174387 2.8903718 1.3862944
## 4619                               1 4.605170 3.2580965 0.0000000
## 4620                               1 4.442651 2.4849066 1.6094379
## 4621                               1 5.164786 3.2188758 0.6931472
## 4622                               1 5.164786 1.3862944 1.0986123
## 4623                               2 5.560682 1.0986123 1.9459101
## 4624                               3 4.382027 3.1780538 1.0986123
## 4625                               7 4.234107 4.0253517 0.6931472
## 4626                               1 4.605170 3.5835189 1.0986123
## 4627                               2 4.442651 3.4339872 0.0000000
## 4628                               1 4.553877 0.6931472 1.0986123
## 4629                              39 5.075174 2.7080502 3.4011974
## 4630                               1 3.891820 1.7917595 0.6931472
## 4631                               1 4.174387 3.5553481 0.0000000
## 4632                              39 5.010635 0.6931472 3.4011974
## 4633                              52 4.744932 1.0986123 3.4011974
## 4634                               1 4.727388 3.5835189 0.6931472
## 4635                              52 4.700480 2.3025851 3.4011974
## 4636                               3 4.317488 2.6390573 2.3978953
## 4637                               1 5.521461 0.6931472 1.6094379
## 4638                               1 3.912023 2.4849066 1.9459101
## 4639                               3 4.394449 4.5951199 3.4011974
## 4640                               2 4.234107 5.1239640 1.0986123
## 4641                               2 4.828314 0.0000000 1.6094379
## 4642                               1 4.174387 0.6931472 1.6094379
## 4643                              96 5.164786 0.6931472 3.4011974
## 4644                               1 3.891820 3.2580965 0.6931472
## 4645                               1 5.252273 3.9318256 1.0986123
## 4646                               1 5.521461 1.7917595 0.6931472
## 4647                               1 5.375278 5.4510385 0.0000000
## 4648                               1 4.779123 3.7612001 0.6931472
## 4649                              29 4.770685 1.3862944 3.4011974
## 4650                               1 4.553877 4.2046926 1.0986123
## 4651                               1 4.700480 3.5263605 1.0986123
## 4652                               1 5.135798 4.9199809 1.3862944
## 4653                               1 4.595120 2.1972246 1.0986123
## 4654                              21 5.147494 2.1972246 3.4011974
## 4655                               1 4.317488 1.0986123 0.6931472
## 4656                               1 3.912023 2.8903718 1.6094379
## 4657                               1 4.343805 4.9767337 0.6931472
## 4658                               1 4.828314 2.7080502 2.6390573
## 4659                               1 4.317488 4.7095302 0.6931472
## 4660                               1 5.857933 2.5649494 0.6931472
## 4661                               4 4.007333 3.2958369 1.3862944
## 4662                               1 4.595120 5.3752784 0.6931472
## 4663                               3 6.300786 1.7917595 0.6931472
## 4664                               3 4.248495 5.6240175 0.6931472
## 4665                               1 5.010635 0.6931472 1.3862944
## 4666                               1 4.007333 2.9957323 0.6931472
## 4667                               1 4.605170 3.8286414 1.9459101
## 4668                               1 4.605170 1.9459101 1.6094379
## 4669                               1 4.553877 4.7535902 0.6931472
## 4670                               1 5.298317 3.0910425 1.3862944
## 4671                               1 5.247024 2.9957323 0.0000000
## 4672                               1 4.174387 1.0986123 0.6931472
## 4673                               1 5.991465 4.7874917 0.6931472
## 4674                               1 4.553877 2.3025851 0.0000000
## 4675                               2 5.283204 5.3327188 0.6931472
## 4676                               1 5.978886 2.9957323 1.0986123
## 4677                               1 4.605170 0.6931472 0.0000000
## 4678                               1 5.298317 1.7917595 1.0986123
## 4679                               1 5.105945 1.7917595 1.0986123
## 4680                               1 4.976734 1.3862944 1.6094379
## 4681                               1 4.317488 4.9052748 0.0000000
## 4682                               1 5.192957 4.2766661 1.0986123
## 4683                               5 4.290459 3.8712010 1.3862944
## 4684                               5 4.465908 4.1108739 1.0986123
## 4685                               5 4.304065 4.0943446 1.0986123
## 4686                               1 4.174387 1.7917595 0.0000000
## 4687                               1 5.293305 3.8712010 2.0794415
## 4688                               1 4.174387 0.6931472 4.0943446
## 4689                               1 5.075174 1.6094379 1.9459101
## 4690                               2 5.164786 1.7917595 0.0000000
## 4691                              39 5.273000 1.9459101 3.4011974
## 4692                               1 4.595120 3.2958369 1.6094379
## 4693                               2 5.164786 4.7957905 0.0000000
## 4694                               1 4.595120 2.3025851 1.0986123
## 4695                               1 4.605170 1.7917595 0.6931472
## 4696                               1 5.293305 2.8903718 0.6931472
## 4697                               1 5.293305 4.7706846 1.0986123
## 4698                               2 4.605170 4.2484952 1.0986123
## 4699                               2 3.806662 3.6375862 0.6931472
## 4700                               1 4.276666 5.3181200 0.0000000
## 4701                               1 4.859812 5.1873858 0.6931472
## 4702                               1 4.605170 5.1239640 1.0986123
## 4703                               1 4.442651 0.6931472 1.9459101
## 4704                               1 4.248495 0.6931472 0.0000000
## 4705                               1 4.605170 1.6094379 0.6931472
## 4706                               1 5.075174 0.0000000 1.0986123
## 4707                               2 5.220356 0.0000000 3.4011974
## 4708                               1 5.087596 2.1972246 0.0000000
## 4709                               1 4.382027 0.6931472 0.0000000
## 4710                               1 3.806662 2.0794415 1.6094379
## 4711                              52 4.859812 1.7917595 3.4011974
## 4712                               1 4.007333 0.0000000 0.0000000
## 4713                               1 4.219508 2.4849066 1.6094379
## 4714                               1 4.787492 0.0000000 0.6931472
## 4715                               2 4.007333 3.7135721 0.6931472
## 4716                               2 3.912023 0.6931472 1.6094379
## 4717                               1 5.010635 1.9459101 0.0000000
## 4718                               1 4.941642 3.0445224 3.4011974
## 4719                              14 4.912655 2.1972246 3.4011974
## 4720                               1 4.828314 4.8903491 1.0986123
## 4721                               5 4.406719 4.0253517 1.0986123
## 4722                               1 5.010635 1.0986123 0.0000000
## 4723                               1 4.499810 2.8332133 2.0794415
## 4724                               1 4.762174 4.6539604 1.6094379
## 4725                               5 4.262680 4.0073332 1.0986123
## 4726                               1 5.966147 2.3025851 1.0986123
## 4727                               1 4.060443 4.5325995 1.0986123
## 4728                               1 3.912023 1.0986123 1.6094379
## 4729                               1 5.010635 2.3025851 1.6094379
## 4730                               1 5.010635 2.1972246 0.0000000
## 4731                               2 4.382027 3.8501476 1.9459101
## 4732                               1 4.744932 4.3567088 0.0000000
## 4733                              52 4.553877 2.3025851 3.4011974
## 4734                               1 4.442651 0.0000000 0.6931472
## 4735                               1 5.192957 4.2766661 1.0986123
## 4736                               1 5.003946 2.0794415 1.0986123
## 4737                               1 5.298317 2.7725887 1.9459101
## 4738                               1 4.234107 5.1761497 0.6931472
## 4739                               1 4.442651 3.2188758 1.6094379
## 4740                               1 4.762174 4.4067192 0.0000000
## 4741                               1 5.389072 4.2195077 0.0000000
## 4742                               1 4.605170 4.9487599 0.6931472
## 4743                               1 5.768321 3.6635616 1.0986123
## 4744                              26 4.553877 3.9889840 3.4011974
## 4745                               5 4.700480 2.7725887 0.0000000
## 4746                               1 4.653960 0.6931472 3.1780538
## 4747                               1 4.897840 3.8286414 1.3862944
## 4748                               1 3.806662 2.1972246 2.3025851
## 4749                               1 5.298317 1.0986123 2.5649494
## 4750                               1 4.700480 4.3694479 0.6931472
## 4751                               2 5.010635 4.2766661 1.0986123
## 4752                               1 5.003946 5.4553211 0.6931472
## 4753                               2 4.442651 3.9512437 0.6931472
## 4754                               1 5.298317 1.6094379 1.9459101
## 4755                               2 5.135798 4.7535902 1.0986123
## 4756                               1 3.688879 4.0775374 1.0986123
## 4757                               2 4.553877 5.9635793 0.0000000
## 4758                               2 4.553877 4.1588831 0.0000000
## 4759                               1 5.857933 2.1972246 0.0000000
## 4760                               1 5.105945 5.1532916 1.0986123
## 4761                               1 4.787492 3.0445224 0.6931472
## 4762                               1 4.867534 2.3025851 1.0986123
## 4763                               4 3.688879 2.0794415 0.0000000
## 4764                               2 4.867534 4.9052748 1.0986123
## 4765                               1 4.787492 4.3820266 1.0986123
## 4766                               1 4.499810 3.6888795 0.0000000
## 4767                               1 4.787492 4.4067192 0.6931472
## 4768                               1 4.744932 2.7725887 0.0000000
## 4769                               1 5.010635 0.0000000 0.6931472
## 4770                               1 5.135798 2.9957323 0.0000000
## 4771                               1 4.820282 4.4426513 1.6094379
## 4772                               8 4.644391 2.7725887 3.4011974
## 4773                               8 4.595120 2.6390573 3.4011974
## 4774                              21 5.062595 1.6094379 3.4011974
## 4775                               1 4.744932 0.6931472 0.0000000
## 4776                               2 4.007333 5.6204009 0.0000000
## 4777                               2 4.276666 5.0369526 1.0986123
## 4778                              39 5.135798 2.4849066 3.4011974
## 4779                               1 5.010635 2.7080502 1.9459101
## 4780                               2 3.663562 2.5649494 0.0000000
## 4781                               1 3.891820 4.3438054 0.6931472
## 4782                              18 3.663562 2.1972246 3.4011974
## 4783                               1 5.298317 4.3567088 1.0986123
## 4784                               1 5.220356 2.4849066 3.4011974
## 4785                               1 5.298317 2.8332133 1.3862944
## 4786                               1 4.700480 0.0000000 1.0986123
## 4787                               1 5.616771 1.3862944 1.0986123
## 4788                               2 4.653960 5.9188939 0.0000000
## 4789                               2 5.560682 5.7004436 0.0000000
## 4790                               1 5.164786 1.3862944 3.2188758
## 4791                               1 4.499810 4.5643482 1.0986123
## 4792                               1 4.828314 0.0000000 3.0445224
## 4793                               2 5.476464 2.3978953 1.0986123
## 4794                               1 5.273000 3.4339872 0.6931472
## 4795                               1 3.970292 5.7714411 0.0000000
## 4796                               1 4.595120 4.9904326 0.0000000
## 4797                               1 4.867534 1.3862944 4.0943446
## 4798                               1 5.783825 2.1972246 3.4011974
## 4799                               1 4.905275 5.5294291 0.6931472
## 4800                               2 4.442651 5.3278762 0.6931472
## 4801                               1 4.219508 5.0998664 1.0986123
## 4802                               1 3.806662 0.0000000 2.6390573
## 4803                              52 4.465908 1.7917595 3.4011974
## 4804                               1 4.488636 3.9512437 0.0000000
## 4805                               1 5.010635 5.3132060 1.0986123
## 4806                               1 4.820282 2.3025851 3.4011974
## 4807                               3 4.828314 4.8520303 0.6931472
## 4808                               3 4.976734 4.3174881 0.6931472
## 4809                               2 4.317488 0.6931472 0.6931472
## 4810                              52 4.465908 1.9459101 3.4011974
## 4811                               1 3.912023 1.7917595 1.6094379
## 4812                              39 5.010635 2.3978953 3.4011974
## 4813                               1 4.553877 0.6931472 3.4011974
## 4814                              39 5.298317 1.9459101 3.4011974
## 4815                               1 4.787492 3.1354942 0.0000000
## 4816                               1 5.783825 4.2484952 1.0986123
## 4817                               1 5.105945 0.6931472 0.6931472
## 4818                              96 4.941642 1.3862944 3.4011974
## 4819                               2 3.496508 3.9512437 0.0000000
## 4820                               1 5.129899 1.9459101 1.3862944
## 4821                               1 5.247024 1.6094379 1.6094379
## 4822                              18 3.663562 2.1972246 3.4011974
## 4823                               2 5.105945 4.9272537 1.3862944
## 4824                               1 4.369448 3.6635616 0.0000000
## 4825                               1 4.828314 2.3025851 0.0000000
## 4826                               1 5.855072 2.3025851 1.3862944
## 4827                               3 3.688879 3.7135721 1.0986123
## 4828                               1 4.330733 2.6390573 1.6094379
## 4829                               1 3.806662 3.2188758 3.4011974
## 4830                               1 4.382027 0.6931472 1.0986123
## 4831                               1 5.579730 3.0445224 1.3862944
## 4832                               1 4.174387 1.9459101 0.6931472
## 4833                               1 4.499810 0.6931472 1.0986123
## 4834                               1 4.744932 4.2484952 3.2188758
## 4835                               3 3.806662 3.1354942 1.0986123
## 4836                               4 3.912023 5.0998664 0.0000000
## 4837                               7 4.276666 3.5835189 0.6931472
## 4838                               4 3.912023 5.3327188 0.0000000
## 4839                               7 4.043051 3.7612001 0.6931472
## 4840                               1 5.416100 1.6094379 1.0986123
## 4841                               1 4.787492 4.6249728 1.0986123
## 4842                               1 5.517453 4.3820266 0.6931472
## 4843                               1 5.416100 1.0986123 1.3862944
## 4844                               1 4.553877 1.0986123 2.6390573
## 4845                               1 4.499810 2.8332133 1.3862944
## 4846                               1 4.615121 2.7725887 2.3025851
## 4847                               2 5.505332 3.2188758 0.6931472
## 4848                               1 4.787492 2.8903718 1.6094379
## 4849                               1 5.010635 4.2195077 1.0986123
## 4850                               1 4.779123 0.0000000 0.0000000
## 4851                               1 5.010635 2.0794415 0.0000000
## 4852                               2 4.382027 2.8903718 1.6094379
## 4853                               1 5.241747 2.5649494 0.6931472
## 4854                               1 4.499810 3.6635616 1.0986123
## 4855                               1 5.298317 0.0000000 1.6094379
## 4856                               1 4.787492 1.7917595 3.2188758
## 4857                               1 5.003946 4.0073332 0.0000000
## 4858                              52 4.867534 0.6931472 3.4011974
## 4859                               1 3.555348 2.9957323 2.3025851
## 4860                               1 4.934474 4.6821312 1.0986123
## 4861                               1 4.605170 2.3978953 0.6931472
## 4862                               1 4.174387 2.4849066 3.4011974
## 4863                               1 5.298317 1.9459101 1.6094379
## 4864                               1 4.595120 3.2580965 1.3862944
## 4865                               5 4.744932 4.0775374 0.6931472
## 4866                               5 5.003946 4.5108595 0.0000000
## 4867                               1 4.905275 2.7080502 1.0986123
## 4868                               2 5.010635 2.3978953 1.6094379
## 4869                               1 4.653960 4.6443909 1.0986123
## 4870                               1 4.317488 0.0000000 2.0794415
## 4871                               1 5.164786 3.8066625 1.0986123
## 4872                               1 4.905275 2.0794415 1.0986123
## 4873                               1 4.574711 1.0986123 1.6094379
## 4874                               1 6.756932 3.6635616 1.3862944
## 4875                               1 4.584967 5.4510385 1.0986123
## 4876                              52 4.465908 1.6094379 3.4011974
## 4877                              14 5.010635 2.5649494 3.4011974
## 4878                               6 3.912023 1.0986123 1.3862944
## 4879                              96 5.220356 0.6931472 3.4011974
## 4880                               1 5.416100 2.7725887 0.6931472
## 4881                               5 5.017280 3.9318256 1.6094379
## 4882                               1 4.317488 3.7376696 0.0000000
## 4883                               1 5.010635 5.5373343 0.6931472
## 4884                               1 4.976734 2.8332133 1.3862944
## 4885                               1 5.521461 3.3322045 1.3862944
## 4886                               1 5.135798 1.3862944 0.0000000
## 4887                               1 4.976734 3.9702919 1.6094379
## 4888                               1 5.298317 2.9444390 1.7917595
## 4889                               1 3.912023 1.6094379 0.0000000
## 4890                               1 5.521461 1.7917595 0.0000000
## 4891                               1 5.433722 3.0445224 0.6931472
## 4892                               1 4.859812 2.4849066 0.6931472
## 4893                              96 5.123964 1.3862944 3.4011974
## 4894                               1 4.382027 3.2958369 1.3862944
## 4895                               2 4.644391 3.8066625 1.6094379
## 4896                               1 4.605170 1.9459101 0.6931472
## 4897                               2 4.553877 5.6937321 0.0000000
## 4898                               1 4.553877 0.6931472 0.6931472
## 4899                               1 5.298317 0.6931472 1.9459101
## 4900                               2 4.605170 0.6931472 1.0986123
## 4901                               1 5.273000 5.9939614 0.0000000
## 4902                               1 5.700444 0.0000000 1.6094379
## 4903                               6 3.806662 1.9459101 3.4011974
## 4904                               1 4.934474 2.5649494 5.8998974
## 4905                               1 5.298317 1.0986123 1.3862944
## 4906                               1 4.248495 5.4889377 0.6931472
## 4907                               1 3.912023 0.0000000 1.9459101
## 4908                               2 3.737670 1.3862944 1.3862944
## 4909                               1 4.753590 3.8066625 3.3322045
## 4910                               1 5.298317 0.0000000 1.3862944
## 4911                               1 4.859812 3.4657359 1.3862944
## 4912                               1 4.828314 4.7621739 0.6931472
## 4913                               1 4.007333 1.3862944 1.0986123
## 4914                               1 5.298317 1.7917595 0.6931472
## 4915                               2 5.105945 1.9459101 3.3672958
## 4916                               1 5.293305 1.6094379 1.6094379
## 4917                               1 5.010635 2.7080502 1.0986123
## 4918                               1 4.499810 2.3025851 0.0000000
## 4919                               1 4.787492 3.9318256 2.3025851
## 4920                               2 3.688879 4.2904594 0.0000000
## 4921                               1 4.317488 5.1590553 1.0986123
## 4922                               1 4.219508 1.6094379 1.6094379
## 4923                               3 4.317488 4.5951199 0.6931472
## 4924                               2 3.806662 1.9459101 0.6931472
## 4925                               1 3.806662 1.7917595 0.0000000
## 4926                               2 4.174387 4.3040651 0.0000000
## 4927                               2 4.317488 2.6390573 1.0986123
## 4928                               3 4.430817 1.6094379 0.6931472
## 4929                               1 4.867534 4.6151205 0.6931472
## 4930                               1 3.912023 2.4849066 3.4011974
## 4931                               1 5.010635 3.9120230 1.0986123
## 4932                               3 4.553877 1.9459101 0.6931472
## 4933                               1 5.703782 0.6931472 0.0000000
## 4934                              52 4.727388 2.0794415 3.4011974
## 4935                               1 4.976734 3.1354942 0.0000000
## 4936                               2 4.499810 5.6869754 0.0000000
## 4937                              19 4.553877 2.7080502 3.4011974
## 4938                              29 4.770685 1.0986123 3.4011974
## 4939                               1 4.317488 0.6931472 1.6094379
## 4940                               1 5.416100 3.2580965 1.9459101
## 4941                               3 4.394449 1.3862944 0.6931472
## 4942                               1 5.247024 1.3862944 0.6931472
## 4943                               1 4.317488 1.0986123 0.0000000
## 4944                               4 4.077537 2.4849066 0.6931472
## 4945                               2 4.595120 4.3174881 0.0000000
## 4946                               1 5.616771 2.1972246 1.0986123
## 4947                               1 4.787492 2.4849066 3.3322045
## 4948                               1 4.828314 2.3978953 1.0986123
## 4949                               1 4.317488 0.0000000 3.4011974
## 4950                               1 4.762174 1.9459101 1.0986123
## 4951                               1 4.382027 1.3862944 0.0000000
## 4952                               1 4.094345 1.0986123 1.7917595
## 4953                               1 4.634729 5.1298987 1.0986123
## 4954                               2 4.174387 0.0000000 0.0000000
## 4955                               1 3.806662 2.6390573 1.6094379
## 4956                               1 4.248495 4.1588831 1.0986123
## 4957                               1 4.499810 0.0000000 1.9459101
## 4958                               1 5.416100 1.9459101 1.6094379
## 4959                               1 4.828314 0.6931472 2.6390573
## 4960                               1 5.164786 4.3307333 0.6931472
## 4961                               3 5.273000 3.2188758 1.0986123
## 4962                               1 4.867534 5.1761497 1.3862944
## 4963                               1 4.564348 0.0000000 1.0986123
## 4964                               1 4.859812 5.2933048 0.6931472
## 4965                               1 5.298317 2.3025851 1.9459101
## 4966                               2 4.553877 2.3978953 1.3862944
## 4967                               1 5.241747 4.0430513 0.6931472
## 4968                               1 6.109248 0.0000000 0.0000000
## 4969                               3 5.575949 3.6375862 1.0986123
## 4970                               2 3.806662 2.9957323 3.4011974
## 4971                               1 5.010635 2.3978953 0.6931472
## 4972                               3 6.291569 2.9957323 1.0986123
## 4973                               1 5.438079 0.0000000 1.7917595
## 4974                               1 4.174387 2.7725887 0.6931472
## 4975                               2 5.075174 4.3174881 1.3862944
## 4976                               1 4.927254 0.0000000 1.6094379
## 4977                               7 5.043425 2.9444390 0.0000000
## 4978                               3 3.663562 3.4965076 1.3862944
## 4979                               1 4.744932 4.3307333 0.6931472
## 4980                               9 4.700480 1.0986123 3.4011974
## 4981                               1 4.605170 5.1474945 1.0986123
## 4982                               1 5.416100 0.6931472 1.0986123
## 4983                               1 4.828314 2.3025851 2.6390573
## 4984                               1 5.010635 0.0000000 0.0000000
## 4985                               1 5.293305 2.1972246 1.3862944
## 4986                               1 5.521461 2.4849066 1.0986123
## 4987                               2 5.347108 2.3025851 0.6931472
## 4988                               1 5.192957 4.9344739 0.6931472
## 4989                               1 4.859812 3.2580965 1.6094379
## 4990                               1 4.499810 5.5797298 0.0000000
## 4991                               3 3.912023 3.8286414 3.4011974
## 4992                               1 4.941642 3.6109179 0.0000000
## 4993                               1 5.010635 1.6094379 0.6931472
## 4994                               1 5.451038 2.8332133 3.4011974
## 4995                               1 5.135798 0.0000000 0.6931472
## 4996                               3 4.094345 1.7917595 0.6931472
## 4997                               1 5.298317 1.0986123 0.6931472
## 4998                              52 5.010635 0.0000000 3.4011974
## 4999                               1 4.941642 1.0986123 0.6931472
## 5000                               1 4.094345 1.0986123 1.0986123
## 5001                               1 4.867534 0.0000000 1.0986123
## 5002                               3 4.488636 3.4011974 0.6931472
## 5003                               1 5.010635 4.7004804 0.6931472
## 5004                               1 5.480639 1.9459101 1.0986123
## 5005                               1 7.244228 3.4339872 4.4998097
## 5006                               2 4.477337 5.1416636 0.6931472
## 5007                               1 4.317488 1.7917595 0.0000000
## 5008                               1 6.214608 3.2958369 0.0000000
## 5009                               1 4.828314 0.0000000 1.3862944
## 5010                               1 4.317488 4.1743873 0.0000000
## 5011                              52 4.867534 0.6931472 3.4011974
## 5012                              39 5.135798 2.3978953 3.4011974
## 5013                               1 5.703782 2.3978953 0.6931472
## 5014                               1 4.744932 5.5568281 0.6931472
## 5015                               1 4.532599 3.1354942 3.4011974
## 5016                               1 4.779123 5.3423343 0.6931472
## 5017                               2 5.192957 3.1780538 1.7917595
## 5018                               3 5.420535 2.0794415 1.0986123
## 5019                               1 5.043425 0.6931472 0.6931472
## 5020                               1 4.744932 2.7725887 1.3862944
## 5021                               1 3.912023 1.3862944 0.6931472
## 5022                               3 5.298317 3.4011974 0.0000000
## 5023                               1 5.056246 1.0986123 1.3862944
## 5024                               1 4.976734 4.8040210 1.0986123
## 5025                               1 4.553877 3.8286414 0.6931472
## 5026                               1 4.744932 0.0000000 0.0000000
## 5027                               1 4.174387 1.6094379 0.6931472
## 5028                               1 5.521461 3.0910425 0.6931472
## 5029                               1 4.553877 4.9052748 1.0986123
## 5030                               1 5.220356 4.7095302 1.3862944
## 5031                              10 4.007333 5.0937502 0.0000000
## 5032                               1 5.857933 0.0000000 0.0000000
## 5033                               1 5.135798 3.0910425 1.6094379
## 5034                               1 4.605170 2.8903718 0.6931472
## 5035                               1 3.583519 2.3025851 0.6931472
## 5036                               1 4.094345 0.0000000 0.0000000
## 5037                               1 4.828314 0.0000000 0.6931472
## 5038                               1 4.787492 4.9052748 0.6931472
## 5039                               2 4.499810 2.0794415 0.0000000
## 5040                               2 4.859812 4.5108595 1.6094379
## 5041                               5 4.356709 4.8903491 0.6931472
## 5042                               1 4.595120 3.0445224 0.6931472
## 5043                               1 3.912023 4.6821312 0.0000000
## 5044                               4 3.850148 4.8040210 0.6931472
## 5045                               3 5.010635 2.8903718 1.6094379
## 5046                               1 5.298317 3.8918203 0.6931472
## 5047                               1 4.828314 4.8675345 0.6931472
## 5048                               2 4.094345 4.9698133 1.7917595
## 5049                               1 4.605170 2.1972246 1.0986123
## 5050                               1 4.595120 2.7080502 0.0000000
## 5051                               1 4.317488 3.2188758 0.6931472
## 5052                               6 4.941642 0.0000000 1.6094379
## 5053                               1 4.499810 0.0000000 3.4011974
## 5054                               1 4.077537 4.0604430 0.6931472
## 5055                               1 4.709530 3.9318256 1.0986123
## 5056                               1 4.382027 1.0986123 1.3862944
## 5057                               1 3.912023 1.6094379 2.6390573
## 5058                               1 5.703782 1.9459101 1.3862944
## 5059                               1 4.499810 1.0986123 1.3862944
## 5060                               1 4.779123 3.8918203 0.0000000
## 5061                               1 4.234107 3.0910425 1.3862944
## 5062                               1 5.220356 4.7361984 0.6931472
## 5063                               1 4.605170 3.1780538 0.6931472
## 5064                               1 4.442651 3.4965076 0.0000000
## 5065                               2 4.905275 4.8283137 0.6931472
## 5066                               4 5.129899 5.0172798 0.0000000
## 5067                               3 3.637586 3.9120230 0.6931472
## 5068                               1 4.499810 3.9512437 0.6931472
## 5069                               1 3.806662 0.0000000 1.3862944
## 5070                               1 5.003946 4.9628446 1.3862944
## 5071                               1 5.298317 2.6390573 0.6931472
## 5072                               1 4.828314 1.7917595 4.0943446
## 5073                               2 4.174387 3.2580965 0.6931472
## 5074                               2 5.159055 3.4339872 0.6931472
## 5075                               5 4.488636 3.1780538 0.6931472
## 5076                               1 5.010635 2.0794415 1.0986123
## 5077                               2 4.060443 0.6931472 0.0000000
## 5078                               1 4.634729 3.8066625 3.4011974
## 5079                               1 5.948035 3.1780538 1.0986123
## 5080                               1 3.688879 0.0000000 0.0000000
## 5081                               1 4.330733 2.6390573 0.0000000
## 5082                               2 5.135798 1.0986123 0.0000000
## 5083                              10 3.806662 5.0172798 0.0000000
## 5084                               1 5.293305 5.1179938 0.6931472
## 5085                               1 4.595120 4.1108739 1.6094379
## 5086                               5 3.663562 3.9318256 0.0000000
## 5087                               1 4.094345 1.6094379 3.0445224
## 5088                               2 4.867534 4.8828019 1.0986123
## 5089                               1 5.298317 5.1357984 0.0000000
## 5090                               2 4.653960 5.4764636 0.0000000
## 5091                               1 4.744932 4.1588831 1.0986123
## 5092                               2 4.976734 3.5263605 1.9459101
## 5093                               1 4.317488 4.6249728 0.6931472
## 5094                               1 5.521461 5.0106353 0.6931472
## 5095                               1 4.382027 0.6931472 0.6931472
## 5096                               2 4.787492 4.2626799 1.0986123
## 5097                               1 4.605170 3.4657359 1.3862944
## 5098                               1 4.828314 2.4849066 2.3025851
## 5099                               1 4.882802 0.6931472 1.0986123
## 5100                               1 5.416100 4.1896547 0.6931472
## 5101                               1 5.164786 0.6931472 0.6931472
## 5102                               1 5.416100 0.6931472 1.0986123
## 5103                               1 5.370638 5.1179938 0.0000000
## 5104                               1 5.703782 2.1972246 1.9459101
## 5105                               1 4.867534 5.2203558 0.6931472
## 5106                               1 4.700480 5.6312118 0.0000000
## 5107                              13 4.317488 3.6109179 0.6931472
## 5108                               1 3.583519 2.8903718 2.6390573
## 5109                               1 5.700444 2.0794415 1.3862944
## 5110                               1 5.298317 0.0000000 0.0000000
## 5111                               1 4.700480 2.1972246 1.0986123
## 5112                               1 5.075174 3.7841896 3.4011974
## 5113                               2 5.023881 4.9836066 1.0986123
## 5114                               1 4.976734 2.7725887 1.0986123
## 5115                               2 4.787492 2.3978953 0.6931472
## 5116                               1 4.430817 4.7874917 1.0986123
## 5117                               1 5.075174 2.5649494 1.6094379
## 5118                               2 5.010635 2.6390573 1.6094379
## 5119                               5 5.192957 4.6539604 0.6931472
## 5120                              13 4.219508 3.7135721 0.6931472
## 5121                               1 3.218876 2.0794415 0.0000000
## 5122                               2 5.043425 0.0000000 1.0986123
## 5123                               2 4.317488 4.5108595 0.6931472
## 5124                               1 4.382027 0.6931472 1.3862944
## 5125                               2 4.276666 4.0253517 1.0986123
## 5126                               4 3.951244 3.3672958 0.6931472
## 5127                               1 4.828314 4.5325995 1.0986123
## 5128                               1 4.442651 2.3025851 3.3672958
## 5129                               1 4.060443 2.8903718 1.3862944
## 5130                               1 4.605170 3.5835189 0.0000000
## 5131                               2 4.174387 4.9344739 0.0000000
## 5132                               1 5.703782 2.4849066 0.0000000
## 5133                               2 3.688879 5.2522734 3.3322045
## 5134                               2 4.700480 3.8501476 0.6931472
## 5135                               2 4.442651 3.8066625 0.6931472
## 5136                               1 5.062595 4.4659081 1.0986123
## 5137                               3 4.605170 2.0794415 0.6931472
## 5138                               1 4.158883 1.3862944 1.6094379
## 5139                               1 5.978886 3.4965076 1.3862944
## 5140                               1 4.787492 3.4011974 2.3025851
## 5141                               1 3.931826 4.6913479 1.3862944
## 5142                               1 5.003946 0.0000000 1.7917595
## 5143                               1 4.174387 4.7273878 0.0000000
## 5144                               5 4.248495 2.3978953 0.0000000
## 5145                               1 5.135798 0.0000000 1.6094379
## 5146                               2 5.010635 0.6931472 0.0000000
## 5147                               1 4.317488 1.7917595 3.4011974
## 5148                               1 4.605170 2.3025851 0.0000000
## 5149                               2 3.637586 2.4849066 0.6931472
## 5150                               1 5.298317 2.5649494 1.0986123
## 5151                               1 4.976734 3.6109179 1.9459101
## 5152                               1 5.010635 2.6390573 1.6094379
## 5153                               1 5.298317 0.6931472 0.0000000
## 5154                               2 4.828314 5.2522734 0.6931472
## 5155                               1 5.164786 2.0794415 0.6931472
## 5156                               1 5.192957 0.6931472 0.6931472
## 5157                               1 5.164786 1.7917595 1.0986123
## 5158                               1 5.164786 4.3567088 2.6390573
## 5159                               2 3.912023 2.0794415 1.0986123
## 5160                               1 4.691348 3.6109179 0.6931472
## 5161                               7 4.204693 3.0445224 0.6931472
## 5162                               7 4.043051 3.0910425 0.6931472
## 5163                               7 4.343805 3.6375862 0.6931472
## 5164                               2 4.382027 4.1108739 0.6931472
## 5165                               1 4.442651 2.4849066 1.0986123
## 5166                               5 4.454347 2.3978953 0.6931472
## 5167                               2 4.787492 4.7361984 0.6931472
## 5168                               1 4.941642 4.8751973 1.0986123
## 5169                               1 5.703782 1.6094379 0.0000000
## 5170                               1 4.499810 1.6094379 0.0000000
## 5171                               2 4.248495 4.4543473 1.0986123
## 5172                               1 4.499810 4.4067192 0.6931472
## 5173                               1 5.298317 3.5553481 3.4011974
## 5174                               1 4.905275 1.7917595 0.0000000
## 5175                               1 3.610918 5.3082677 0.0000000
## 5176                               1 4.094345 0.0000000 0.0000000
## 5177                               1 6.037871 2.3025851 0.6931472
## 5178                               1 4.867534 0.6931472 1.9459101
## 5179                               1 5.192957 4.0253517 1.0986123
## 5180                               1 5.075174 1.9459101 0.6931472
## 5181                               1 4.828314 5.3181200 0.6931472
## 5182                               5 4.174387 2.9957323 1.3862944
## 5183                               1 4.369448 3.1354942 1.0986123
## 5184                               1 4.744932 3.4965076 1.0986123
## 5185                               1 4.605170 2.4849066 3.1354942
## 5186                               1 4.499810 3.1780538 2.4849066
## 5187                               1 4.905275 5.4467374 0.6931472
## 5188                               3 3.912023 3.8501476 1.0986123
## 5189                               2 4.262680 5.1590553 0.6931472
## 5190                               1 4.382027 1.3862944 3.4011974
## 5191                               1 4.634729 5.9763509 0.0000000
## 5192                              10 5.521461 1.6094379 3.4011974
## 5193                               1 5.389072 2.1972246 0.6931472
## 5194                               2 5.416100 2.3978953 0.6931472
## 5195                               1 4.595120 3.9120230 0.0000000
## 5196                               1 3.555348 0.0000000 1.7917595
## 5197                               1 4.499810 4.4659081 1.3862944
## 5198                               1 3.850148 1.3862944 3.4011974
## 5199                               5 4.317488 4.8283137 1.6094379
## 5200                               1 5.135798 3.7612001 1.3862944
## 5201                               1 5.010635 3.6109179 1.0986123
## 5202                               1 3.401197 4.3944492 0.0000000
## 5203                               2 4.779123 1.9459101 1.3862944
## 5204                               1 3.688879 0.0000000 2.7080502
## 5205                               1 4.442651 0.0000000 0.6931472
## 5206                               3 4.595120 2.9444390 1.0986123
## 5207                               1 4.369448 1.6094379 2.1972246
## 5208                               1 4.094345 1.6094379 1.0986123
## 5209                               2 4.744932 4.8751973 1.0986123
## 5210                               1 4.499810 2.8332133 1.0986123
## 5211                               1 4.174387 3.4657359 0.0000000
## 5212                               4 4.174387 5.8777358 0.0000000
## 5213                               1 4.875197 2.3025851 1.0986123
## 5214                               1 5.010635 1.0986123 0.0000000
## 5215                               2 4.007333 4.4543473 0.6931472
## 5216                               5 4.248495 4.5217886 1.6094379
## 5217                               1 5.075174 0.0000000 0.6931472
## 5218                               2 4.553877 4.2341065 1.9459101
## 5219                               1 4.595120 1.6094379 1.0986123
## 5220                               1 6.214608 1.0986123 1.0986123
## 5221                               1 3.555348 0.0000000 2.7080502
## 5222                               2 3.912023 3.6375862 3.0445224
## 5223                               5 4.343805 4.6821312 1.6094379
## 5224                               2 5.940171 4.6539604 1.0986123
## 5225                               1 5.010635 2.1972246 4.0943446
## 5226                               2 5.293305 4.4067192 1.0986123
## 5227                               1 5.010635 2.4849066 0.0000000
## 5228                               1 4.976734 2.3978953 1.0986123
## 5229                               1 4.248495 2.9957323 1.9459101
## 5230                               1 4.787492 4.8751973 3.4011974
## 5231                               1 4.454347 3.5263605 1.0986123
## 5232                               1 4.934474 5.0751738 0.6931472
## 5233                               1 4.442651 0.0000000 0.6931472
## 5234                               1 4.543295 2.7080502 3.4011974
## 5235                               1 4.753590 4.9972123 0.6931472
## 5236                               1 4.276666 5.4337220 0.0000000
## 5237                               1 5.298317 0.0000000 0.0000000
## 5238                               1 4.276666 5.8861040 0.0000000
## 5239                               1 4.605170 2.7080502 1.0986123
## 5240                               1 6.802395 2.3025851 1.0986123
## 5241                               2 4.382027 4.3307333 0.6931472
## 5242                               1 4.521789 5.1873858 1.3862944
## 5243                               1 3.912023 1.9459101 1.9459101
## 5244                               1 4.905275 4.8520303 0.6931472
## 5245                               1 5.075174 1.0986123 1.9459101
## 5246                               1 4.859812 5.4071718 0.0000000
## 5247                               1 4.317488 2.3025851 0.0000000
## 5248                               1 4.779123 1.7917595 1.6094379
## 5249                               1 4.595120 3.5553481 1.9459101
## 5250                               1 4.787492 1.3862944 0.0000000
## 5251                               5 4.290459 4.6249728 1.6094379
## 5252                               2 6.214608 2.3978953 1.9459101
## 5253                               1 5.416100 0.0000000 0.0000000
## 5254                               1 5.616771 1.0986123 1.0986123
## 5255                               5 3.912023 4.8441871 0.0000000
## 5256                               4 3.688879 4.4773368 0.0000000
## 5257                               1 4.744932 1.0986123 0.6931472
## 5258                               1 5.010635 1.3862944 0.6931472
## 5259                               1 5.298317 4.5538769 1.0986123
## 5260                               1 4.317488 0.0000000 1.9459101
## 5261                               1 4.584967 5.0562458 0.6931472
## 5262                               2 5.293305 5.4026774 0.6931472
## 5263                               1 4.691348 2.3978953 0.6931472
## 5264                               1 4.700480 3.2580965 1.3862944
## 5265                               4 4.077537 5.8579332 0.0000000
## 5266                               2 4.553877 2.9444390 0.6931472
## 5267                               1 5.068904 5.3082677 0.0000000
## 5268                               1 5.416100 2.3025851 0.0000000
## 5269                               1 5.273000 4.7535902 0.6931472
## 5270                               1 4.564348 5.2781147 0.0000000
## 5271                               1 4.290459 1.9459101 0.6931472
## 5272                               2 4.477337 5.7651911 0.0000000
## 5273                               1 4.499810 1.0986123 0.6931472
## 5274                               1 4.595120 2.7725887 1.6094379
## 5275                               2 3.555348 2.3978953 0.6931472
## 5276                               1 6.956545 4.7957905 1.0986123
## 5277                               1 5.164786 4.3307333 0.6931472
## 5278                               1 5.978886 4.2904594 1.3862944
## 5279                               1 5.273000 4.8202816 1.0986123
## 5280                               1 3.891820 1.9459101 2.3025851
## 5281                               1 5.521461 0.0000000 0.0000000
## 5282                               1 5.010635 2.8332133 1.3862944
## 5283                               1 4.605170 2.1972246 1.9459101
## 5284                               9 4.007333 1.3862944 3.4011974
## 5285                               1 5.616771 0.0000000 1.0986123
## 5286                               1 4.382027 4.8598124 0.6931472
## 5287                               1 4.488636 5.8636312 0.0000000
## 5288                               1 5.634790 4.5217886 0.6931472
## 5289                               1 4.248495 4.7004804 0.0000000
## 5290                               1 4.317488 0.0000000 0.0000000
## 5291                               1 4.382027 3.9512437 0.0000000
## 5292                               1 3.713572 0.0000000 0.0000000
## 5293                               1 5.273000 0.0000000 1.3862944
## 5294                               1 5.521461 1.6094379 0.6931472
## 5295                               1 4.564348 5.2882670 0.0000000
## 5296                               1 4.584967 3.1354942 1.9459101
## 5297                               1 4.941642 4.7874917 1.3862944
## 5298                               1 5.164786 4.6539604 0.6931472
## 5299                               1 4.787492 1.6094379 1.7917595
## 5300                               1 4.488636 3.8286414 0.0000000
## 5301                               1 5.181784 2.3978953 1.0986123
## 5302                               1 5.347108 3.2958369 1.7917595
## 5303                               1 5.010635 4.4067192 1.3862944
## 5304                               1 5.003946 4.4067192 0.6931472
## 5305                               1 5.416100 0.6931472 1.0986123
## 5306                               1 4.143135 0.6931472 3.4011974
## 5307                               1 4.663439 2.7080502 1.0986123
## 5308                               4 5.105945 3.5835189 2.3025851
## 5309                               3 4.317488 3.2188758 0.6931472
## 5310                              18 3.663562 1.6094379 3.4339872
## 5311                              18 3.663562 2.5649494 3.4011974
## 5312                               3 3.401197 2.5649494 0.6931472
## 5313                               1 4.248495 0.6931472 0.0000000
## 5314                               1 4.605170 4.9416424 1.0986123
## 5315                               2 4.828314 4.7184989 0.6931472
## 5316                               1 4.700480 1.0986123 1.0986123
## 5317                               2 4.976734 1.9459101 0.6931472
## 5318                               1 4.718499 4.8362819 1.0986123
## 5319                               3 4.234107 4.7957905 0.0000000
## 5320                               1 5.703782 4.0430513 1.3862944
## 5321                               1 5.560682 0.0000000 0.6931472
## 5322                               2 3.891820 3.6109179 0.6931472
## 5323                               1 5.370638 3.1354942 0.6931472
## 5324                               1 5.298317 5.0875963 1.0986123
## 5325                               1 6.907755 3.6375862 1.0986123
## 5326                               1 4.787492 2.8903718 1.0986123
## 5327                               2 5.736572 4.1588831 0.0000000
## 5328                               1 4.248495 4.5108595 1.3862944
## 5329                               1 5.273000 4.0430513 0.6931472
## 5330                               1 4.700480 3.4657359 0.6931472
## 5331                              14 4.317488 2.5649494 3.4011974
## 5332                               7 3.806662 1.9459101 0.0000000
## 5333                               1 5.105945 3.1354942 1.0986123
## 5334                               1 5.010635 4.3438054 0.6931472
## 5335                               1 4.382027 0.6931472 0.0000000
## 5336                               2 5.192957 4.8040210 0.6931472
## 5337                               3 4.382027 4.6051702 0.6931472
## 5338                               1 4.094345 0.6931472 1.0986123
## 5339                               1 5.003946 3.2580965 0.0000000
## 5340                               4 3.970292 5.8607862 0.0000000
## 5341                               1 5.298317 2.1972246 1.9459101
## 5342                               1 5.075174 4.3694479 0.6931472
## 5343                               1 4.941642 2.7725887 0.0000000
## 5344                               2 5.293305 2.0794415 1.3862944
## 5345                               1 5.247024 3.7612001 0.0000000
## 5346                               1 4.828314 3.9318256 0.6931472
## 5347                               1 4.976734 4.1271344 1.0986123
## 5348                               1 5.010635 0.0000000 1.0986123
## 5349                               3 4.553877 3.7376696 0.6931472
## 5350                               3 4.595120 4.3040651 0.0000000
## 5351                               1 4.867534 3.7612001 0.0000000
## 5352                               1 4.025352 0.0000000 0.0000000
## 5353                               1 6.109248 0.0000000 0.0000000
## 5354                               1 4.317488 1.9459101 0.0000000
## 5355                               1 5.480639 3.8066625 0.6931472
## 5356                              52 4.859812 0.0000000 3.4011974
## 5357                               1 3.806662 1.6094379 0.0000000
## 5358                               1 5.556828 3.2188758 1.3862944
## 5359                               1 4.317488 4.6728288 0.0000000
## 5360                               2 3.610918 4.1431347 0.6931472
## 5361                               5 5.347108 2.3978953 1.0986123
## 5362                               2 5.293305 5.2678582 0.6931472
## 5363                               1 5.241747 3.4965076 2.0794415
## 5364                               1 4.060443 3.4965076 0.0000000
## 5365                               8 4.094345 3.7841896 3.4011974
## 5366                               2 5.247024 3.5263605 0.0000000
## 5367                               2 4.934474 4.4773368 0.6931472
## 5368                               1 4.828314 5.2257467 0.0000000
## 5369                               1 4.543295 3.8286414 0.6931472
## 5370                               1 4.605170 4.0604430 0.6931472
## 5371                               1 5.003946 2.0794415 5.8971539
## 5372                               1 4.852030 2.7080502 1.9459101
## 5373                               2 5.075174 5.0039463 1.0986123
## 5374                               1 5.075174 2.0794415 3.4339872
## 5375                               1 4.700480 4.1588831 1.0986123
## 5376                               1 5.652489 3.7612001 1.0986123
## 5377                               1 4.317488 0.6931472 2.3025851
## 5378                               1 6.476972 1.7917595 1.9459101
## 5379                               3 4.890349 2.9957323 0.0000000
## 5380                               1 5.003946 3.5835189 0.6931472
## 5381                               1 5.298317 4.0253517 0.6931472
## 5382                               2 4.700480 2.9957323 1.7917595
## 5383                               1 5.926926 2.5649494 1.0986123
## 5384                               1 4.553877 0.6931472 2.3025851
## 5385                               3 4.543295 3.1354942 0.0000000
## 5386                               1 4.787492 4.7706846 1.0986123
## 5387                               1 5.010635 0.0000000 1.6094379
## 5388                              39 5.075174 1.7917595 3.4011974
## 5389                               1 4.882802 2.1972246 0.6931472
## 5390                               1 4.624973 2.3025851 0.0000000
## 5391                               1 4.442651 4.4308168 0.0000000
## 5392                               1 4.955827 0.6931472 1.7917595
## 5393                               1 4.248495 0.6931472 1.0986123
## 5394                               1 5.298317 4.5108595 4.4998097
## 5395                              52 5.293305 1.6094379 3.4011974
## 5396                               1 4.605170 4.1271344 1.0986123
## 5397                               1 4.812184 3.0445224 1.0986123
## 5398                               1 5.164786 2.8332133 0.6931472
## 5399                               1 4.605170 2.6390573 1.3862944
## 5400                               2 4.043051 1.0986123 1.9459101
## 5401                              10 3.663562 5.0304379 0.0000000
## 5402                               2 4.672829 2.4849066 1.7917595
## 5403                               1 4.234107 3.4965076 0.0000000
## 5404                               1 4.919981 3.2580965 1.6094379
## 5405                               2 4.174387 0.0000000 1.0986123
## 5406                               1 4.189655 0.0000000 1.3862944
## 5407                               1 4.343805 2.1972246 2.6390573
## 5408                               1 4.700480 2.0794415 1.0986123
## 5409                               1 4.158883 3.8501476 3.2580965
## 5410                               1 4.499810 4.7184989 0.6931472
## 5411                               1 4.983607 3.0445224 1.6094379
## 5412                               1 5.241747 4.4426513 1.0986123
## 5413                               2 6.892642 2.9957323 0.6931472
## 5414                               1 5.652489 3.6109179 0.6931472
## 5415                               1 4.941642 4.8040210 1.0986123
## 5416                               2 4.574711 2.6390573 0.6931472
## 5417                               1 5.192957 1.9459101 0.6931472
## 5418                               1 5.293305 2.3025851 0.6931472
## 5419                               1 5.393628 4.4188406 0.6931472
## 5420                               1 5.192957 1.6094379 1.0986123
## 5421                               1 4.477337 1.6094379 2.6390573
## 5422                               1 5.135798 4.9487599 0.0000000
## 5423                               2 4.787492 2.6390573 2.6390573
## 5424                               2 4.653960 2.1972246 0.6931472
## 5425                               1 4.700480 5.2574954 0.6931472
## 5426                               2 4.007333 2.3025851 1.3862944
## 5427                               1 5.010635 1.9459101 1.6094379
## 5428                               3 5.192957 3.9120230 1.0986123
## 5429                               1 4.700480 1.3862944 0.6931472
## 5430                               1 5.075174 1.6094379 1.0986123
## 5431                               1 5.370638 1.6094379 1.9459101
## 5432                               1 4.317488 0.0000000 1.6094379
## 5433                               1 4.787492 1.7917595 1.0986123
## 5434                               1 5.288267 5.1929569 1.3862944
## 5435                               2 4.094345 4.1431347 0.6931472
## 5436                               1 5.135798 5.3327188 1.0986123
## 5437                               1 5.513429 0.0000000 1.7917595
## 5438                               1 4.605170 0.0000000 2.0794415
## 5439                               1 5.192957 0.0000000 0.6931472
## 5440                               1 4.094345 2.4849066 0.6931472
## 5441                               1 4.418841 4.4773368 0.6931472
## 5442                               1 3.806662 0.0000000 0.6931472
## 5443                               1 4.905275 0.0000000 0.0000000
## 5444                               1 5.438079 2.4849066 1.0986123
## 5445                               1 5.192957 5.1817836 0.6931472
## 5446                               1 5.164786 0.0000000 3.0445224
## 5447                               1 4.700480 0.0000000 0.6931472
## 5448                               1 5.075174 4.4659081 1.0986123
## 5449                               1 4.744932 2.1972246 0.6931472
## 5450                               1 5.129899 1.0986123 0.6931472
## 5451                              52 4.465908 1.3862944 3.4011974
## 5452                               1 4.317488 1.3862944 0.0000000
## 5453                               1 4.867534 2.3025851 0.0000000
## 5454                               1 4.744932 1.9459101 3.4011974
## 5455                               5 3.912023 0.0000000 0.0000000
## 5456                               1 5.298317 0.6931472 0.6931472
## 5457                               5 4.007333 2.5649494 0.0000000
## 5458                               1 4.828314 1.9459101 0.0000000
## 5459                               1 5.075174 4.3694479 1.3862944
## 5460                              10 3.663562 5.0625950 0.0000000
## 5461                               2 4.488636 4.0253517 1.3862944
## 5462                               1 4.442651 4.0943446 1.3862944
## 5463                               1 3.912023 1.3862944 0.0000000
## 5464                               1 5.433722 5.2729996 0.6931472
## 5465                               1 4.867534 1.3862944 1.3862944
## 5466                               2 5.003946 4.4067192 1.0986123
## 5467                               1 4.787492 1.0986123 1.0986123
## 5468                               1 3.806662 0.0000000 0.0000000
## 5469                               2 4.025352 3.8066625 1.0986123
## 5470                               1 4.317488 3.9702919 0.6931472
## 5471                               1 4.744932 4.2195077 1.3862944
## 5472                               1 4.499810 2.4849066 1.3862944
## 5473                               2 4.691348 4.4188406 1.0986123
## 5474                               4 3.891820 3.7376696 0.6931472
## 5475                               2 4.605170 4.6249728 0.0000000
## 5476                               1 5.686975 1.3862944 0.6931472
## 5477                               1 5.501258 3.9120230 0.0000000
## 5478                               2 4.369448 4.0253517 1.0986123
## 5479                               1 4.094345 3.0910425 0.0000000
## 5480                               1 4.828314 1.9459101 1.0986123
## 5481                               1 4.007333 2.0794415 0.0000000
## 5482                               3 6.052089 0.0000000 1.9459101
## 5483                               1 5.010635 0.0000000 2.6390573
## 5484                               2 3.891820 1.9459101 1.0986123
## 5485                               1 4.574711 4.7361984 0.6931472
## 5486                               1 4.744932 2.0794415 0.0000000
## 5487                               1 5.298317 3.0910425 0.6931472
## 5488                               9 5.521461 1.3862944 3.4011974
## 5489                               9 5.298317 2.0794415 3.4011974
## 5490                               1 5.075174 5.7776523 0.0000000
## 5491                               1 4.499810 2.9957323 3.4011974
## 5492                               1 5.476464 2.9444390 1.0986123
## 5493                               1 5.669881 3.0445224 1.3862944
## 5494                               1 5.010635 1.6094379 1.7917595
## 5495                               3 4.007333 4.3174881 0.0000000
## 5496                               1 5.940171 1.9459101 1.3862944
## 5497                               1 4.787492 2.9444390 0.6931472
## 5498                               1 4.634729 1.6094379 0.6931472
## 5499                               1 4.158883 5.2574954 0.6931472
## 5500                               1 5.273000 1.0986123 1.6094379
## 5501                               1 4.248495 4.8362819 0.6931472
## 5502                               2 5.010635 3.5835189 0.6931472
## 5503                               2 5.010635 3.0445224 1.9459101
## 5504                               1 4.653960 4.6249728 0.0000000
## 5505                               1 5.886104 3.3322045 1.0986123
## 5506                               1 5.105945 1.7917595 0.6931472
## 5507                               1 5.783825 2.9444390 0.6931472
## 5508                               2 4.653960 2.1972246 0.6931472
## 5509                               1 4.605170 2.3025851 1.7917595
## 5510                               2 4.859812 5.1873858 0.6931472
## 5511                               2 5.433722 3.6375862 1.6094379
## 5512                               1 4.158883 2.6390573 0.0000000
## 5513                               1 4.605170 1.3862944 1.0986123
## 5514                               8 4.595120 3.0445224 3.4011974
## 5515                              12 5.703782 1.3862944 3.4011974
## 5516                               3 4.430817 2.3978953 0.6931472
## 5517                               1 4.828314 1.7917595 1.0986123
## 5518                               1 5.298317 2.1972246 0.6931472
## 5519                               1 4.382027 1.6094379 3.4011974
## 5520                               1 5.192957 3.2580965 0.0000000
## 5521                               1 4.653960 2.8903718 3.4011974
## 5522                               2 4.605170 0.0000000 0.6931472
## 5523                               3 4.499810 2.3978953 3.4011974
## 5524                               1 5.075174 2.0794415 0.0000000
## 5525                               1 5.521461 4.6347290 0.6931472
## 5526                               1 4.744932 4.4308168 0.6931472
## 5527                               1 4.867534 2.1972246 1.6094379
## 5528                               1 5.068904 5.0106353 0.6931472
## 5529                               1 4.700480 5.2417470 1.0986123
## 5530                               1 4.094345 1.3862944 1.0986123
## 5531                               1 4.043051 2.9957323 1.0986123
## 5532                               1 5.192957 1.9459101 0.0000000
## 5533                               4 5.521461 1.3862944 0.0000000
## 5534                               2 4.521789 3.8712010 1.0986123
## 5535                               1 5.273000 4.1896547 1.0986123
## 5536                               4 3.850148 4.5747110 0.6931472
## 5537                               1 5.164786 0.6931472 1.0986123
## 5538                               1 5.105945 2.1972246 0.6931472
## 5539                               2 4.369448 3.5553481 1.0986123
## 5540                               1 5.843544 4.5538769 1.9459101
## 5541                               2 4.382027 4.6821312 0.6931472
## 5542                               1 5.703782 4.9628446 1.3862944
## 5543                               2 6.549651 5.2257467 1.7917595
## 5544                               4 3.218876 1.7917595 3.4011974
## 5545                               1 5.273000 4.9126549 0.0000000
## 5546                               3 5.105945 4.9836066 0.6931472
## 5547                               2 4.174387 5.3890717 0.6931472
## 5548                               1 5.003946 3.3322045 1.0986123
## 5549                               1 5.416100 0.0000000 0.0000000
## 5550                               1 6.204558 5.0689042 3.4011974
## 5551                               1 5.298317 3.1354942 0.6931472
## 5552                               2 4.828314 3.1780538 1.0986123
## 5553                               1 4.553877 3.7841896 1.3862944
## 5554                               2 4.905275 2.7080502 1.0986123
## 5555                               1 4.787492 1.3862944 1.0986123
## 5556                               1 5.075174 0.0000000 2.6390573
## 5557                               3 4.934474 1.7917595 0.6931472
## 5558                               1 4.234107 2.3978953 0.6931472
## 5559                               4 4.605170 0.6931472 3.4011974
## 5560                               1 4.262680 5.3518581 1.0986123
## 5561                               1 5.521461 1.3862944 0.0000000
## 5562                               2 4.248495 2.7080502 0.6931472
## 5563                               1 5.135798 0.6931472 0.0000000
## 5564                               1 4.828314 0.6931472 1.0986123
## 5565                               1 4.934474 5.2470241 0.6931472
## 5566                               1 5.293305 2.9444390 0.6931472
## 5567                               1 5.164786 0.6931472 0.0000000
## 5568                               1 4.787492 1.0986123 1.0986123
## 5569                               1 4.605170 0.6931472 1.6094379
## 5570                               1 4.605170 2.6390573 2.0794415
## 5571                               2 4.867534 0.0000000 3.4011974
## 5572                               1 3.912023 0.6931472 3.4011974
## 5573                               1 4.382027 2.3978953 0.6931472
## 5574                               1 5.424950 2.8332133 0.0000000
## 5575                               3 5.703782 4.5108595 1.6094379
## 5576                               1 4.867534 2.8332133 0.6931472
## 5577                               1 5.416100 2.8332133 3.4011974
## 5578                               1 5.003946 0.0000000 0.6931472
## 5579                               1 4.317488 2.1972246 0.0000000
## 5580                               1 4.744932 1.7917595 1.9459101
## 5581                               3 4.574711 4.1588831 1.0986123
## 5582                               1 5.616771 2.9957323 0.6931472
## 5583                               1 5.093750 4.0604430 1.3862944
## 5584                               4 4.007333 3.2958369 3.3322045
## 5585                               1 4.317488 0.6931472 0.6931472
## 5586                               2 5.509388 3.0445224 0.6931472
## 5587                               1 4.234107 3.0910425 0.0000000
## 5588                              39 5.010635 1.9459101 3.4011974
## 5589                              39 4.941642 2.1972246 3.4011974
## 5590                               1 5.323010 1.7917595 0.6931472
## 5591                               1 4.997212 3.5553481 1.0986123
## 5592                               1 5.700444 0.0000000 0.0000000
## 5593                               2 3.891820 1.0986123 1.0986123
## 5594                               2 5.010635 0.0000000 3.4011974
## 5595                               3 4.382027 1.3862944 0.0000000
## 5596                               6 4.219508 4.3944492 1.6094379
## 5597                               6 4.276666 4.4886364 1.6094379
## 5598                               7 4.574711 4.9836066 0.6931472
## 5599                               1 5.135798 4.4308168 0.6931472
## 5600                              19 4.204693 1.9459101 4.3040651
## 5601                               1 4.382027 1.0986123 0.0000000
## 5602                               2 4.787492 4.1896547 1.0986123
## 5603                               2 5.521461 2.8903718 1.0986123
## 5604                               1 5.298317 4.6913479 0.6931472
## 5605                               1 5.192957 0.6931472 0.0000000
## 5606                               2 3.970292 4.6539604 0.0000000
## 5607                               1 5.298317 1.9459101 1.0986123
## 5608                              19 4.189655 1.9459101 5.1929569
## 5609                               2 5.105945 2.7080502 1.0986123
## 5610                               1 3.806662 5.1357984 0.0000000
## 5611                               1 4.382027 5.0106353 0.0000000
## 5612                               2 4.828314 1.3862944 0.6931472
## 5613                               1 4.499810 1.3862944 1.0986123
## 5614                               1 3.688879 3.9702919 1.9459101
## 5615                              18 3.663562 0.6931472 3.4339872
## 5616                               1 4.828314 0.6931472 0.0000000
## 5617                               2 4.442651 3.0445224 0.0000000
## 5618                              10 3.663562 4.8675345 0.0000000
## 5619                               1 5.010635 3.1354942 0.6931472
## 5620                               1 4.605170 2.8903718 0.6931472
## 5621                               1 4.595120 2.8903718 1.0986123
## 5622                               1 5.117994 1.7917595 1.3862944
## 5623                               2 4.691348 3.1354942 3.4011974
## 5624                               2 4.844187 2.4849066 0.6931472
## 5625                               1 5.393628 3.3322045 1.0986123
## 5626                               3 3.806662 3.0910425 0.0000000
## 5627                               1 4.317488 3.1780538 0.6931472
## 5628                               1 4.787492 0.0000000 1.6094379
## 5629                               1 4.787492 3.4965076 1.0986123
## 5630                               1 4.682131 1.0986123 1.3862944
## 5631                               1 5.298317 1.0986123 1.0986123
## 5632                               2 4.007333 3.9889840 0.6931472
## 5633                               1 5.323010 1.0986123 0.6931472
## 5634                               1 5.010635 4.3040651 1.0986123
## 5635                               4 4.174387 5.8749307 0.0000000
## 5636                               2 5.010635 3.9120230 3.3322045
## 5637                               4 4.174387 6.0544393 0.0000000
## 5638                               7 4.317488 4.3438054 0.0000000
## 5639                               7 4.442651 3.6109179 0.6931472
## 5640                               3 4.060443 5.3471075 0.0000000
## 5641                               3 4.499810 5.2678582 0.0000000
## 5642                               1 4.787492 0.0000000 1.6094379
## 5643                               1 4.744932 1.0986123 1.7917595
## 5644                               1 4.653960 2.6390573 3.2188758
## 5645                               1 4.234107 2.7080502 1.9459101
## 5646                               1 4.828314 3.2958369 1.6094379
## 5647                               1 4.499810 1.9459101 1.9459101
## 5648                               1 4.828314 5.2257467 0.0000000
## 5649                               1 5.370638 3.6635616 1.7917595
## 5650                               1 4.672829 5.2626902 3.0445224
## 5651                               1 4.488636 4.5108595 1.3862944
## 5652                               1 5.164786 4.3944492 0.6931472
## 5653                               1 6.109248 2.4849066 1.0986123
## 5654                               1 4.584967 3.6375862 1.7917595
## 5655                              10 3.663562 4.4886364 0.0000000
## 5656                               2 5.075174 2.3025851 1.3862944
## 5657                               1 5.700444 4.1431347 0.6931472
## 5658                               1 4.317488 1.7917595 2.0794415
## 5659                               1 4.595120 0.0000000 1.6094379
## 5660                               1 5.105945 3.6888795 0.6931472
## 5661                               1 4.976734 2.4849066 0.0000000
## 5662                               1 5.476464 4.9767337 1.0986123
## 5663                               1 4.330733 4.2484952 0.6931472
## 5664                               9 4.094345 0.6931472 3.4011974
## 5665                               1 3.912023 4.7361984 1.0986123
## 5666                               1 5.521461 3.2958369 1.0986123
## 5667                               1 4.941642 2.3978953 1.0986123
## 5668                               1 4.828314 1.6094379 1.6094379
## 5669                               1 5.010635 4.5951199 0.6931472
## 5670                               1 5.393628 4.3694479 0.6931472
## 5671                               1 5.192957 2.8903718 0.6931472
## 5672                               3 5.560682 2.9957323 1.0986123
## 5673                               2 7.313220 3.1780538 3.4011974
## 5674                               3 3.912023 4.6051702 0.6931472
## 5675                               1 5.991465 0.0000000 1.0986123
## 5676                               1 5.416100 1.9459101 3.4011974
## 5677                               2 4.605170 0.6931472 0.6931472
## 5678                               1 4.700480 3.6375862 0.0000000
## 5679                               1 4.553877 1.9459101 0.0000000
## 5680                               1 5.010635 3.7376696 0.6931472
## 5681                               1 4.605170 3.0445224 0.6931472
## 5682                               1 4.234107 3.6888795 0.0000000
## 5683                              15 4.700480 2.4849066 3.4011974
## 5684                               1 3.784190 3.8286414 1.0986123
## 5685                               2 5.043425 5.4889377 0.0000000
## 5686                               9 5.703782 2.3025851 3.4011974
## 5687                               1 4.204693 0.6931472 0.0000000
## 5688                               1 5.164786 0.6931472 1.3862944
## 5689                               1 5.003946 3.0910425 2.7080502
## 5690                               1 4.317488 5.4116461 0.6931472
## 5691                               1 4.605170 3.9120230 1.0986123
## 5692                               1 4.859812 2.9957323 2.4849066
## 5693                               1 5.010635 0.0000000 0.0000000
## 5694                               1 5.389072 0.0000000 1.6094379
## 5695                               1 5.220356 2.3025851 1.0986123
## 5696                               4 4.174387 3.0445224 0.0000000
## 5697                               3 4.007333 4.5849675 1.9459101
## 5698                               1 5.135798 1.7917595 1.0986123
## 5699                               1 5.010635 3.1354942 1.9459101
## 5700                              21 5.147494 1.6094379 3.4011974
## 5701                               1 4.369448 0.6931472 0.6931472
## 5702                               1 4.605170 1.6094379 1.3862944
## 5703                               3 5.605802 1.9459101 0.6931472
## 5704                               1 4.442651 4.0430513 2.3025851
## 5705                               1 5.517453 0.0000000 1.0986123
## 5706                               1 5.192957 2.9957323 1.3862944
## 5707                               1 4.094345 1.6094379 1.9459101
## 5708                               1 4.442651 0.0000000 1.0986123
## 5709                               1 5.560682 3.9889840 0.6931472
## 5710                              39 4.941642 1.9459101 3.4011974
## 5711                              39 5.220356 1.6094379 3.4011974
## 5712                               1 4.836282 3.7841896 0.0000000
## 5713                               1 5.988961 4.8040210 0.6931472
## 5714                               1 4.605170 1.7917595 1.9459101
## 5715                               1 5.416100 1.0986123 1.9459101
## 5716                               1 4.442651 1.3862944 1.3862944
## 5717                               2 4.990433 3.8066625 0.6931472
## 5718                               2 4.499810 2.0794415 2.6390573
## 5719                               2 6.214608 0.0000000 0.0000000
## 5720                               2 4.276666 3.6109179 1.0986123
## 5721                               2 3.713572 2.6390573 1.3862944
## 5722                               2 5.192957 4.6347290 1.0986123
## 5723                               1 4.204693 1.3862944 1.6094379
## 5724                               1 4.804021 3.8712010 1.0986123
## 5725                               2 4.653960 3.3672958 1.0986123
## 5726                               1 4.553877 0.6931472 0.0000000
## 5727                               1 4.605170 0.0000000 0.6931472
## 5728                              21 4.867534 1.0986123 3.4011974
## 5729                               1 4.672829 4.5217886 0.6931472
## 5730                              18 4.605170 2.4849066 3.4011974
## 5731                               1 4.442651 2.1972246 0.0000000
## 5732                               2 3.401197 0.6931472 1.6094379
## 5733                               1 5.164786 4.0430513 1.3862944
## 5734                               1 4.828314 2.0794415 0.0000000
## 5735                               2 3.555348 2.1972246 1.6094379
## 5736                               2 4.779123 3.2580965 1.0986123
## 5737                               2 5.010635 5.0039463 1.0986123
## 5738                               1 4.007333 1.3862944 0.0000000
## 5739                               2 4.744932 5.3659760 0.6931472
## 5740                               1 4.595120 2.6390573 1.6094379
## 5741                               2 4.430817 3.6375862 0.6931472
## 5742                               1 4.859812 2.5649494 0.6931472
## 5743                               4 3.784190 4.4543473 1.6094379
## 5744                               1 4.605170 2.7080502 1.0986123
## 5745                               1 4.174387 3.6888795 0.0000000
## 5746                               1 4.595120 1.0986123 0.0000000
## 5747                               1 4.605170 0.6931472 1.9459101
## 5748                               1 5.416100 2.5649494 1.6094379
## 5749                               1 4.787492 3.1354942 1.9459101
## 5750                               1 4.934474 1.6094379 0.6931472
## 5751                              29 4.955827 1.0986123 3.4011974
## 5752                               1 4.941642 2.5649494 1.3862944
## 5753                               2 4.867534 5.6021188 5.2983174
## 5754                               1 5.783825 4.1588831 1.6094379
## 5755                               1 5.857933 2.1972246 0.6931472
## 5756                               1 5.164786 1.6094379 0.6931472
## 5757                               2 4.488636 4.0775374 1.3862944
## 5758                               2 4.234107 5.0689042 1.3862944
## 5759                               1 3.688879 2.3025851 1.7917595
## 5760                               4 4.174387 3.0445224 2.3025851
## 5761                               1 5.075174 2.9957323 2.6390573
## 5762                               4 4.905275 4.4773368 0.6931472
## 5763                               3 4.691348 3.7376696 1.0986123
## 5764                               1 4.442651 1.0986123 2.6390573
## 5765                               1 5.241747 3.2188758 1.3862944
## 5766                               1 4.828314 4.0253517 1.0986123
## 5767                               1 4.941642 0.0000000 0.0000000
## 5768                               1 5.075174 1.3862944 1.0986123
## 5769                               1 4.744932 1.3862944 1.6094379
## 5770                               1 4.382027 3.4339872 1.0986123
## 5771                               1 5.288267 1.9459101 0.6931472
## 5772                               1 5.438079 3.8286414 0.0000000
## 5773                               3 6.109248 4.3944492 1.6094379
## 5774                               1 6.796824 4.1896547 0.0000000
## 5775                               1 5.135798 1.7917595 1.0986123
## 5776                               2 4.787492 2.8903718 1.0986123
## 5777                               1 4.941642 2.8903718 0.6931472
## 5778                               1 4.248495 2.8903718 2.6390573
## 5779                               2 4.248495 4.8040210 1.0986123
## 5780                               9 3.806662 1.3862944 3.4011974
## 5781                               1 4.941642 4.9972123 1.0986123
## 5782                               1 6.396930 1.7917595 1.6094379
## 5783                               1 4.369448 0.0000000 1.9459101
## 5784                               1 4.007333 0.6931472 2.6390573
## 5785                               1 5.616771 3.7135721 1.0986123
## 5786                               1 4.094345 0.0000000 1.9459101
## 5787                               2 5.273000 4.4543473 1.0986123
## 5788                               9 3.912023 1.6094379 3.4011974
## 5789                               2 4.828314 3.4339872 3.4011974
## 5790                               1 4.976734 0.0000000 1.6094379
## 5791                              15 4.595120 2.7080502 3.4011974
## 5792                               1 4.867534 2.1972246 0.0000000
## 5793                               1 4.744932 2.0794415 1.0986123
## 5794                               3 4.094345 4.0253517 0.0000000
## 5795                               1 5.293305 4.6821312 1.3862944
## 5796                               1 5.135798 3.0910425 1.0986123
## 5797                               1 5.953243 0.0000000 1.0986123
## 5798                               5 3.610918 1.7917595 3.4011974
## 5799                               1 4.382027 1.6094379 1.6094379
## 5800                               1 4.174387 5.4026774 0.0000000
## 5801                               1 4.025352 1.9459101 0.0000000
## 5802                               1 4.248495 1.9459101 0.6931472
## 5803                               1 4.653960 1.0986123 1.9459101
## 5804                               1 4.248495 4.2195077 0.6931472
## 5805                               1 5.010635 1.0986123 0.0000000
## 5806                               3 4.718499 3.6375862 2.3025851
## 5807                               1 4.382027 1.7917595 3.4011974
## 5808                              15 4.595120 1.7917595 3.4011974
## 5809                               1 4.700480 2.3978953 1.9459101
## 5810                               2 4.248495 4.7874917 0.6931472
## 5811                               1 4.941642 0.0000000 1.3862944
## 5812                               1 3.828641 1.0986123 1.3862944
## 5813                               1 5.192957 0.0000000 0.0000000
## 5814                               1 5.521461 5.2203558 0.0000000
## 5815                               1 4.317488 3.7135721 1.0986123
## 5816                               1 5.521461 3.2580965 1.3862944
## 5817                               1 5.521461 0.6931472 1.0986123
## 5818                               1 4.094345 1.0986123 0.0000000
## 5819                               1 4.553877 2.3025851 1.9459101
## 5820                               1 4.927254 1.6094379 2.3978953
## 5821                               1 6.309918 0.0000000 2.9957323
## 5822                               1 4.976734 0.0000000 0.6931472
## 5823                               1 4.605170 2.7080502 1.0986123
## 5824                               1 4.779123 2.9444390 1.3862944
## 5825                               2 3.871201 0.0000000 1.3862944
## 5826                               3 5.298317 3.3322045 1.9459101
## 5827                               1 4.158883 4.0604430 0.6931472
## 5828                               2 4.787492 3.2188758 1.0986123
## 5829                               1 3.912023 3.1354942 0.6931472
## 5830                               1 5.247024 2.0794415 0.6931472
## 5831                               1 5.459586 2.0794415 1.9459101
## 5832                               2 4.248495 4.3040651 1.0986123
## 5833                               1 4.094345 1.3862944 0.0000000
## 5834                               1 4.499810 0.0000000 1.0986123
## 5835                               2 4.828314 0.0000000 0.0000000
## 5836                               1 4.787492 2.0794415 0.6931472
## 5837                               1 4.007333 3.1780538 0.0000000
## 5838                               1 5.010635 0.0000000 0.6931472
## 5839                               1 5.164786 3.7841896 1.0986123
## 5840                               1 4.718499 2.0794415 0.6931472
## 5841                               1 5.298317 1.0986123 2.3025851
## 5842                               1 4.653960 2.9444390 0.0000000
## 5843                               1 4.248495 1.0986123 0.6931472
## 5844                               2 4.744932 0.0000000 1.0986123
## 5845                              15 4.595120 1.7917595 3.4011974
## 5846                               1 4.787492 4.8903491 1.0986123
## 5847                               2 4.499810 2.0794415 0.6931472
## 5848                               1 4.248495 2.0794415 1.3862944
## 5849                               2 3.951244 0.0000000 1.7917595
## 5850                               2 5.010635 4.1431347 1.0986123
## 5851                               1 5.135798 4.5432948 1.0986123
## 5852                               1 4.882802 1.9459101 1.3862944
## 5853                               2 4.499810 2.4849066 1.3862944
## 5854                               1 6.263398 3.3322045 1.7917595
## 5855                               1 5.517453 4.2046926 0.0000000
## 5856                               1 5.075174 1.7917595 0.6931472
## 5857                               1 4.828314 4.9558271 0.0000000
## 5858                               1 5.010635 3.4339872 3.4011974
## 5859                               1 6.907755 4.5538769 0.6931472
## 5860                               2 3.912023 2.7080502 0.6931472
## 5861                               1 5.521461 0.0000000 1.6094379
## 5862                               1 3.688879 0.0000000 0.0000000
## 5863                               1 4.406719 0.0000000 0.0000000
## 5864                               1 4.532599 2.7725887 3.4011974
## 5865                               1 4.605170 1.7917595 1.9459101
## 5866                               1 6.907755 1.7917595 0.6931472
## 5867                               1 4.174387 2.5649494 0.0000000
## 5868                               1 5.521461 1.6094379 0.6931472
## 5869                               2 4.867534 1.0986123 0.0000000
## 5870                               1 3.610918 2.3025851 1.0986123
## 5871                               1 3.496508 2.1972246 0.6931472
## 5872                               4 4.234107 1.6094379 1.3862944
## 5873                               1 4.691348 2.8903718 0.0000000
## 5874                               1 5.298317 1.6094379 1.3862944
## 5875                               1 4.553877 1.3862944 0.6931472
## 5876                               1 3.912023 0.0000000 2.6390573
## 5877                               1 4.094345 4.2766661 0.0000000
## 5878                               1 3.784190 1.0986123 0.0000000
## 5879                               1 9.210240 0.0000000 1.6094379
## 5880                               7 4.700480 2.7080502 0.0000000
## 5881                               1 4.174387 0.0000000 0.0000000
## 5882                               1 4.442651 2.6390573 1.6094379
## 5883                               2 5.164786 2.9444390 1.0986123
## 5884                               1 4.532599 3.9512437 1.0986123
## 5885                               1 5.926926 3.4011974 0.6931472
## 5886                               1 4.605170 4.7095302 1.0986123
## 5887                               1 5.552960 4.0430513 1.0986123
## 5888                               1 4.317488 2.9444390 0.6931472
## 5889                               1 4.770685 3.3672958 3.4011974
## 5890                               1 4.787492 1.3862944 1.3862944
## 5891                               1 5.036953 2.8332133 1.3862944
## 5892                               1 5.010635 0.0000000 1.0986123
## 5893                               1 5.010635 0.0000000 0.6931472
## 5894                               2 4.976734 4.5325995 0.6931472
## 5895                               1 5.521461 2.3978953 0.6931472
## 5896                               1 4.605170 3.1780538 1.6094379
## 5897                               1 5.043425 5.2626902 0.0000000
## 5898                               1 4.317488 5.5683445 0.6931472
## 5899                               1 3.912023 1.3862944 2.4849066
## 5900                               1 4.828314 4.2904594 0.0000000
## 5901                               1 5.298317 2.3025851 1.0986123
## 5902                               3 4.499810 2.7725887 0.6931472
## 5903                               3 4.828314 1.3862944 0.0000000
## 5904                               1 5.293305 1.0986123 0.6931472
## 5905                               1 4.488636 4.9344739 0.6931472
## 5906                               1 5.697093 2.7725887 1.0986123
## 5907                               1 4.700480 3.2580965 2.7080502
## 5908                               1 5.476464 0.6931472 0.6931472
## 5909                               1 5.703782 0.6931472 1.0986123
## 5910                               1 3.433987 0.0000000 1.6094379
## 5911                               1 4.290459 0.0000000 0.0000000
## 5912                               1 4.248495 5.5134287 0.6931472
## 5913                               1 4.143135 2.3025851 3.2188758
## 5914                               9 5.298317 2.1972246 3.4011974
## 5915                               1 5.393628 5.0039463 1.3862944
## 5916                               3 4.553877 4.8828019 0.6931472
## 5917                              21 4.844187 1.9459101 3.4011974
## 5918                               1 5.273000 0.0000000 0.0000000
## 5919                               1 3.912023 2.0794415 1.0986123
## 5920                               1 4.060443 0.6931472 2.1972246
## 5921                               1 4.382027 0.6931472 0.0000000
## 5922                               2 4.290459 2.7080502 0.6931472
## 5923                               1 4.510860 0.0000000 2.7080502
## 5924                               1 4.605170 2.9444390 3.4011974
## 5925                               2 3.951244 5.2257467 1.0986123
## 5926                               1 4.248495 3.8066625 0.6931472
## 5927                               1 5.010635 0.0000000 1.6094379
## 5928                               8 4.672829 4.6539604 1.9459101
## 5929                               1 4.127134 0.6931472 2.9957323
## 5930                               8 3.891820 1.3862944 1.9459101
## 5931                               8 3.912023 2.8332133 1.7917595
## 5932                               4 4.859812 3.8712010 1.6094379
## 5933                               1 5.288267 4.6347290 1.0986123
## 5934                               1 5.220356 4.7957905 0.0000000
## 5935                               1 4.867534 2.1972246 0.0000000
## 5936                               2 4.605170 3.4657359 0.6931472
## 5937                               1 4.317488 0.0000000 0.0000000
## 5938                               2 4.499810 4.6728288 1.6094379
## 5939                               1 4.700480 2.6390573 1.3862944
## 5940                               2 4.174387 2.0794415 0.6931472
## 5941                               1 3.891820 4.6249728 0.0000000
## 5942                               1 5.991465 3.7376696 1.0986123
## 5943                               1 3.433987 1.0986123 1.0986123
## 5944                               1 4.248495 3.3322045 0.0000000
## 5945                               1 5.521461 3.1354942 0.6931472
## 5946                               1 5.459586 2.5649494 1.7917595
## 5947                               1 7.783224 0.6931472 0.0000000
## 5948                               1 3.555348 0.6931472 2.9957323
## 5949                               1 4.174387 3.1780538 2.8332133
## 5950                               1 5.192957 1.6094379 0.0000000
## 5951                               1 4.394449 3.8501476 1.0986123
## 5952                               1 5.416100 2.6390573 0.0000000
## 5953                               1 4.605170 4.8121844 1.3862944
## 5954                               1 4.317488 4.8283137 1.0986123
## 5955                               1 4.442651 0.6931472 1.9459101
## 5956                               1 4.595120 2.3978953 1.7917595
## 5957                               2 5.164786 3.2958369 1.3862944
## 5958                               4 4.828314 3.6635616 0.0000000
## 5959                               1 3.401197 2.0794415 0.0000000
## 5960                               1 5.105945 3.2580965 1.6094379
## 5961                               1 5.298317 0.6931472 1.3862944
## 5962                               1 4.700480 0.0000000 0.0000000
## 5963                               1 5.752573 0.6931472 0.0000000
## 5964                               1 4.997212 2.7725887 3.4011974
## 5965                               1 5.010635 2.4849066 1.6094379
## 5966                               1 5.164786 3.7135721 0.0000000
## 5967                               1 4.077537 5.0172798 0.6931472
## 5968                               1 4.934474 0.0000000 0.0000000
## 5969                               3 3.912023 3.9120230 1.0986123
## 5970                               1 5.521461 0.6931472 3.4011974
## 5971                               1 4.653960 3.8918203 0.6931472
## 5972                               1 4.317488 1.7917595 0.6931472
## 5973                               1 4.867534 5.2257467 0.0000000
## 5974                               2 5.003946 4.9767337 0.6931472
## 5975                               1 5.298317 1.0986123 0.0000000
## 5976                              52 5.003946 0.6931472 3.4011974
## 5977                               1 4.094345 0.0000000 0.0000000
## 5978                               4 3.761200 2.7080502 3.3322045
## 5979                               1 4.976734 2.3978953 1.6094379
## 5980                               1 4.442651 2.3025851 3.4011974
## 5981                               4 5.616771 3.6635616 3.4011974
## 5982                               1 4.605170 1.0986123 1.0986123
## 5983                               5 4.653960 0.6931472 3.4011974
## 5984                               1 5.521461 1.0986123 0.6931472
## 5985                               1 5.164786 5.2364420 0.6931472
## 5986                               1 6.396930 2.9957323 0.6931472
## 5987                              26 4.553877 3.6109179 3.4011974
## 5988                               1 5.010635 0.6931472 0.6931472
## 5989                               1 4.779123 2.4849066 2.3025851
## 5990                               1 5.105945 2.3978953 0.6931472
## 5991                               1 4.382027 3.0910425 0.6931472
## 5992                               1 5.003946 2.7080502 1.3862944
## 5993                               2 5.273000 5.2257467 0.6931472
## 5994                               1 4.867534 1.6094379 1.0986123
## 5995                               1 4.553877 2.1972246 1.0986123
## 5996                               5 4.828314 1.6094379 3.4011974
## 5997                               5 4.553877 1.0986123 3.4011974
## 5998                               1 3.912023 4.0073332 0.0000000
## 5999                               5 4.442651 0.6931472 3.4011974
## 6000                               1 4.382027 0.6931472 2.6390573
## 6001                               1 5.768321 4.8283137 1.0986123
## 6002                               1 4.499810 0.0000000 1.3862944
## 6003                               5 4.553877 1.3862944 3.4011974
## 6004                               1 4.442651 1.7917595 1.0986123
## 6005                               3 4.369448 2.0794415 2.5649494
## 6006                               4 3.988984 3.9120230 0.6931472
## 6007                               1 4.859812 3.3672958 2.3025851
## 6008                               1 4.499810 3.0445224 1.3862944
## 6009                               3 5.537334 2.0794415 0.6931472
## 6010                               1 5.068904 2.7725887 0.6931472
## 6011                               1 4.499810 0.6931472 1.6094379
## 6012                               2 4.442651 3.8501476 1.6094379
## 6013                               1 3.806662 1.6094379 1.0986123
## 6014                               1 5.616771 0.0000000 2.3025851
## 6015                               1 3.637586 0.0000000 0.0000000
## 6016                               1 4.605170 1.0986123 0.6931472
## 6017                               1 4.634729 1.9459101 0.0000000
## 6018                              15 4.595120 2.0794415 3.4011974
## 6019                               1 5.220356 1.9459101 1.0986123
## 6020                               1 4.454347 0.6931472 1.3862944
## 6021                               1 3.688879 3.1354942 1.0986123
## 6022                               5 5.105945 4.0604430 0.6931472
## 6023                               2 3.555348 4.8978398 0.6931472
## 6024                               1 7.600902 1.0986123 1.9459101
## 6025                               1 5.164786 2.6390573 1.0986123
## 6026                               1 4.553877 0.0000000 0.0000000
## 6027                               1 4.248495 1.6094379 0.6931472
## 6028                               1 4.605170 2.8903718 1.0986123
## 6029                               1 5.010635 1.0986123 1.3862944
## 6030                               1 5.129899 4.8675345 1.0986123
## 6031                               1 4.595120 1.6094379 0.0000000
## 6032                               1 4.248495 1.7917595 1.3862944
## 6033                               1 4.867534 3.4965076 2.6390573
## 6034                               1 5.192957 2.3978953 0.6931472
## 6035                               1 4.382027 0.0000000 1.6094379
## 6036                               1 4.595120 2.7725887 3.2188758
## 6037                               1 4.595120 4.0604430 0.0000000
## 6038                               1 5.010635 1.0986123 0.0000000
## 6039                               1 4.290459 3.6635616 0.6931472
## 6040                               1 4.382027 2.1972246 0.0000000
## 6041                               1 4.382027 3.6635616 0.0000000
## 6042                               1 4.442651 3.5263605 0.0000000
## 6043                               1 4.605170 0.0000000 0.0000000
## 6044                               1 4.442651 0.6931472 1.3862944
## 6045                               1 4.174387 1.9459101 1.6094379
## 6046                               1 5.010635 0.0000000 0.0000000
## 6047                               1 5.298317 0.0000000 0.0000000
## 6048                               1 4.820282 2.0794415 2.6390573
## 6049                               1 3.912023 0.0000000 0.0000000
## 6050                               1 5.075174 1.7917595 0.6931472
## 6051                               1 5.298317 1.9459101 1.0986123
## 6052                               1 4.934474 3.7841896 0.0000000
## 6053                               2 3.891820 2.9444390 1.3862944
## 6054                               2 4.007333 2.5649494 1.3862944
## 6055                               1 5.560682 1.3862944 2.3025851
## 6056                               9 4.700480 2.0794415 3.4011974
## 6057                               1 4.700480 0.6931472 1.6094379
## 6058                               4 4.394449 4.9558271 0.0000000
## 6059                              15 4.094345 3.1354942 0.0000000
## 6060                               2 4.174387 0.0000000 0.0000000
## 6061                               1 4.867534 0.0000000 0.6931472
## 6062                               1 5.480639 2.1972246 0.6931472
## 6063                               1 4.867534 1.7917595 0.6931472
## 6064                              52 4.574711 1.7917595 3.4011974
## 6065                               1 4.477337 0.6931472 1.9459101
## 6066                               1 4.718499 1.6094379 1.9459101
## 6067                               2 4.653960 3.9702919 1.9459101
## 6068                               1 4.248495 2.7080502 0.6931472
## 6069                               3 4.317488 0.0000000 1.0986123
## 6070                               1 4.595120 4.8598124 0.6931472
## 6071                               3 4.499810 3.1780538 0.0000000
## 6072                               1 4.094345 0.0000000 1.0986123
## 6073                               1 4.828314 1.9459101 0.0000000
## 6074                               1 4.174387 1.3862944 2.3025851
## 6075                               1 5.068904 3.4011974 1.0986123
## 6076                               1 4.976734 1.0986123 1.6094379
## 6077                               1 5.541264 3.8501476 0.6931472
## 6078                               1 4.499810 5.0562458 0.6931472
## 6079                               1 5.010635 4.2904594 1.0986123
## 6080                               1 5.686975 4.3174881 0.6931472
## 6081                               1 4.317488 1.6094379 0.0000000
## 6082                               1 5.236442 3.1354942 0.6931472
## 6083                               1 4.867534 0.6931472 0.0000000
## 6084                               1 4.276666 1.0986123 0.0000000
## 6085                               2 3.806662 2.4849066 1.0986123
## 6086                               1 4.382027 5.1239640 0.0000000
## 6087                               2 4.543295 3.9318256 0.0000000
## 6088                               3 4.248495 2.7725887 3.0910425
## 6089                               1 5.010635 0.0000000 1.7917595
## 6090                               1 4.248495 1.7917595 0.6931472
## 6091                               5 3.737670 1.0986123 3.4011974
## 6092                               2 4.248495 2.3025851 0.0000000
## 6093                               1 5.192957 2.0794415 0.6931472
## 6094                               2 5.010635 0.6931472 1.0986123
## 6095                               2 4.653960 4.4773368 0.6931472
## 6096                               3 4.605170 2.1972246 1.6094379
## 6097                               1 5.416100 2.1972246 1.3862944
## 6098                               1 4.406719 4.7535902 0.6931472
## 6099                               1 4.976734 5.3423343 1.0986123
## 6100                               1 4.605170 0.6931472 0.0000000
## 6101                               1 4.605170 4.8751973 1.6094379
## 6102                               1 5.247024 2.0794415 1.7917595
## 6103                               1 5.298317 3.8918203 0.0000000
## 6104                               1 4.828314 0.0000000 3.4339872
## 6105                               2 5.703782 1.0986123 1.3862944
## 6106                               1 5.068904 3.6888795 1.3862944
## 6107                               1 5.192957 3.3322045 0.6931472
## 6108                               2 4.595120 3.6375862 0.0000000
## 6109                               1 4.787492 2.9444390 1.3862944
## 6110                               1 4.499810 3.2958369 1.9459101
## 6111                               1 4.077537 0.6931472 0.0000000
## 6112                               2 4.553877 4.9487599 0.0000000
## 6113                               2 4.174387 2.3978953 3.4011974
## 6114                               1 3.688879 0.6931472 0.6931472
## 6115                               1 5.521461 1.9459101 1.3862944
## 6116                               2 4.442651 3.1354942 1.0986123
## 6117                               3 4.262680 2.9444390 3.4011974
## 6118                               1 5.568345 5.1119878 0.6931472
## 6119                               1 4.248495 0.0000000 0.0000000
## 6120                               3 4.691348 1.0986123 2.6390573
## 6121                               1 3.912023 0.6931472 2.7080502
## 6122                               3 4.787492 2.0794415 1.6094379
## 6123                               1 5.298317 1.7917595 1.0986123
## 6124                               1 5.164786 1.3862944 0.0000000
## 6125                               1 4.779123 2.7080502 1.7917595
## 6126                              34 5.105945 2.3978953 3.4011974
## 6127                               1 3.688879 1.6094379 2.6390573
## 6128                              34 5.579730 2.6390573 3.4011974
## 6129                              34 4.867534 2.4849066 3.4011974
## 6130                               1 4.442651 1.0986123 0.6931472
## 6131                               1 4.248495 0.0000000 2.7080502
## 6132                               1 5.347108 3.4339872 1.0986123
## 6133                               2 3.828641 2.0794415 0.0000000
## 6134                               1 4.836282 4.5849675 1.0986123
## 6135                               1 4.477337 3.7376696 1.3862944
## 6136                               1 5.010635 2.6390573 1.6094379
## 6137                               1 5.164786 4.4886364 0.0000000
## 6138                              15 5.940171 1.6094379 3.4011974
## 6139                               1 6.214608 3.3672958 1.7917595
## 6140                               3 4.700480 2.5649494 2.9957323
## 6141                               1 5.164786 0.0000000 0.0000000
## 6142                               1 4.356709 0.0000000 0.0000000
## 6143                               2 5.521461 2.3978953 0.6931472
## 6144                               3 4.828314 5.1416636 0.0000000
## 6145                               1 5.298317 1.0986123 0.6931472
## 6146                               4 4.174387 2.1972246 0.6931472
## 6147                              34 5.323010 2.9957323 3.4011974
## 6148                               1 4.605170 4.0073332 0.0000000
## 6149                               2 4.094345 3.3672958 1.0986123
## 6150                               1 4.595120 5.7620514 0.0000000
## 6151                               1 3.912023 3.2188758 1.9459101
## 6152                               2 3.912023 3.4657359 1.0986123
## 6153                               7 4.219508 4.5108595 0.0000000
## 6154                               1 4.828314 3.4339872 0.0000000
## 6155                               1 5.164786 0.0000000 0.0000000
## 6156                               1 4.605170 4.5108595 1.0986123
## 6157                               1 4.828314 1.9459101 0.6931472
## 6158                               2 4.770685 0.0000000 1.0986123
## 6159                               1 5.846439 5.0937502 5.2882670
## 6160                               1 3.951244 2.7725887 0.6931472
## 6161                               8 4.672829 2.7080502 3.4011974
## 6162                               1 4.595120 5.1239640 0.6931472
## 6163                               3 5.010635 2.8332133 0.0000000
## 6164                               1 4.174387 5.1929569 1.3862944
## 6165                               1 4.442651 1.6094379 3.4011974
## 6166                               1 5.043425 2.1972246 1.3862944
## 6167                               1 4.828314 3.5263605 0.6931472
## 6168                               5 4.077537 3.5835189 1.0986123
## 6169                               2 4.248495 4.0253517 1.9459101
## 6170                               1 5.003946 2.6390573 0.6931472
## 6171                               1 5.247024 3.4657359 1.0986123
## 6172                               7 4.382027 1.6094379 2.9957323
## 6173                               2 4.488636 5.3132060 0.0000000
## 6174                               3 4.812184 5.1704840 1.0986123
## 6175                               2 4.356709 5.1416636 0.6931472
## 6176                               1 4.127134 3.7841896 0.0000000
## 6177                               1 4.787492 5.0039463 0.6931472
## 6178                               1 4.382027 4.8121844 0.6931472
## 6179                               1 5.192957 3.6375862 1.0986123
## 6180                               4 4.976734 5.4026774 0.6931472
## 6181                               3 4.595120 5.6240175 0.0000000
## 6182                               1 5.703782 4.0430513 1.0986123
## 6183                              19 4.465908 1.6094379 4.6051702
## 6184                              13 5.043425 2.3978953 0.6931472
## 6185                              13 5.521461 2.7080502 0.0000000
## 6186                               1 4.867534 2.1972246 0.0000000
## 6187                               2 4.174387 0.0000000 1.3862944
## 6188                               1 5.049856 1.3862944 1.0986123
## 6189                               1 3.912023 0.6931472 0.0000000
## 6190                               2 4.553877 3.9318256 1.0986123
## 6191                               1 3.806662 3.4011974 1.9459101
## 6192                               5 4.094345 3.8066625 1.3862944
## 6193                               2 4.605170 4.7621739 1.3862944
## 6194                               2 4.430817 4.5951199 1.3862944
## 6195                               1 4.248495 5.2781147 0.6931472
## 6196                               5 4.234107 4.3820266 0.6931472
## 6197                               1 4.127134 1.0986123 3.4011974
## 6198                               1 5.298317 0.0000000 0.0000000
## 6199                               1 4.605170 1.3862944 0.6931472
## 6200                               1 3.806662 3.4965076 1.3862944
## 6201                               2 5.135798 3.9512437 1.0986123
## 6202                               1 5.010635 2.3025851 1.9459101
## 6203                               1 4.595120 4.1896547 1.0986123
## 6204                               1 4.553877 4.2484952 1.0986123
## 6205                               1 4.553877 0.0000000 1.3862944
## 6206                               3 4.369448 3.6109179 0.0000000
## 6207                               2 4.787492 0.6931472 3.4011974
## 6208                               1 5.926926 3.2580965 2.6390573
## 6209                               1 4.787492 3.1354942 1.6094379
## 6210                               1 4.605170 3.8286414 1.6094379
## 6211                               2 4.430817 4.3694479 1.3862944
## 6212                               3 6.308098 2.8332133 1.3862944
## 6213                               1 5.438079 2.4849066 1.9459101
## 6214                               1 4.605170 0.0000000 2.6390573
## 6215                               1 4.248495 3.8918203 0.0000000
## 6216                               1 4.276666 3.5835189 1.0986123
## 6217                               1 4.941642 0.6931472 1.6094379
## 6218                               1 4.905275 5.1239640 0.0000000
## 6219                               1 4.787492 2.0794415 0.0000000
## 6220                               1 3.891820 3.7612001 0.0000000
## 6221                               1 5.480639 2.9957323 2.6390573
## 6222                               2 5.010635 2.1972246 0.0000000
## 6223                               2 4.488636 1.0986123 0.0000000
## 6224                               2 4.605170 3.3322045 1.0986123
## 6225                               1 4.317488 3.1780538 0.0000000
## 6226                               1 3.912023 1.6094379 1.6094379
## 6227                               1 4.094345 3.2958369 2.3025851
## 6228                               1 6.633318 0.0000000 2.6390573
## 6229                               1 4.442651 2.7080502 1.0986123
## 6230                               1 4.174387 1.6094379 1.0986123
## 6231                               1 5.010635 4.3174881 1.0986123
## 6232                               1 5.129899 4.9904326 1.3862944
## 6233                               1 4.442651 3.2188758 0.6931472
## 6234                               1 5.857933 2.5649494 1.0986123
## 6235                               1 4.997212 4.0253517 1.9459101
## 6236                               1 4.605170 2.5649494 1.7917595
## 6237                               1 4.382027 2.3025851 1.9459101
## 6238                               3 4.276666 4.5432948 0.6931472
## 6239                               1 4.828314 2.0794415 0.0000000
## 6240                               8 3.526361 4.5538769 0.0000000
## 6241                               1 5.662960 0.6931472 0.0000000
## 6242                               1 5.117994 4.0775374 0.6931472
## 6243                               2 4.828314 3.8066625 3.0445224
## 6244                               1 4.605170 4.2046926 0.6931472
## 6245                               1 5.433722 1.7917595 3.4011974
## 6246                               1 4.605170 3.8918203 0.6931472
## 6247                               3 5.416100 4.4659081 1.0986123
## 6248                               2 5.159055 5.2882670 1.0986123
## 6249                              34 5.521461 2.5649494 3.4011974
## 6250                              34 4.653960 2.7080502 3.4011974
## 6251                               1 3.688879 4.5538769 1.0986123
## 6252                               1 3.912023 3.7612001 2.6390573
## 6253                               1 4.174387 3.7612001 1.0986123
## 6254                               2 4.317488 0.0000000 3.4011974
## 6255                               1 5.192957 0.0000000 3.4339872
## 6256                               2 4.234107 3.0910425 0.6931472
## 6257                               3 5.010635 3.5835189 1.3862944
## 6258                               1 4.828314 3.0445224 1.0986123
## 6259                               1 6.678342 3.0910425 1.3862944
## 6260                               4 6.109248 3.8066625 0.6931472
## 6261                               1 5.703782 2.0794415 0.6931472
## 6262                               1 4.382027 3.3672958 0.0000000
## 6263                               3 6.214608 0.0000000 1.0986123
## 6264                               2 4.905275 2.6390573 0.0000000
## 6265                               1 4.382027 5.0304379 1.0986123
## 6266                               1 4.442651 3.0910425 1.6094379
## 6267                               1 5.010635 4.7791235 1.3862944
## 6268                               1 4.094345 3.4965076 0.0000000
## 6269                               1 5.517453 4.4426513 1.0986123
## 6270                              34 5.043425 2.8332133 3.4011974
## 6271                               2 4.174387 2.6390573 0.6931472
## 6272                               1 5.010635 3.2958369 1.0986123
## 6273                               4 4.564348 5.1647860 0.0000000
## 6274                               1 4.488636 0.0000000 0.0000000
## 6275                               1 4.382027 5.7268477 0.0000000
## 6276                               1 4.343805 4.3820266 1.3862944
## 6277                               2 4.094345 5.0434251 0.0000000
## 6278                               1 5.105945 4.2766661 1.3862944
## 6279                               1 4.248495 1.0986123 0.0000000
## 6280                               1 4.934474 4.1271344 0.0000000
## 6281                               3 3.912023 2.5649494 1.9459101
## 6282                               1 5.521461 3.2580965 1.0986123
## 6283                               1 5.176150 3.2188758 2.3025851
## 6284                               1 5.010635 1.9459101 1.0986123
## 6285                               3 4.499810 2.3025851 3.4011974
## 6286                               1 5.010635 0.0000000 1.9459101
## 6287                               1 4.828314 5.3518581 1.0986123
## 6288                               1 6.028279 1.0986123 1.3862944
## 6289                               1 3.912023 3.6635616 0.6931472
## 6290                              34 5.105945 2.7725887 3.4011974
## 6291                               1 5.164786 3.3672958 1.3862944
## 6292                               1 4.605170 0.0000000 1.6094379
## 6293                              15 4.595120 2.4849066 3.4011974
## 6294                               1 4.382027 2.4849066 0.0000000
## 6295                               1 4.941642 1.3862944 1.6094379
## 6296                               1 4.418841 2.8903718 1.9459101
## 6297                               2 4.595120 1.3862944 1.0986123
## 6298                               1 4.369448 0.0000000 0.0000000
## 6299                               1 4.605170 2.9444390 0.6931472
## 6300                               1 5.075174 2.7725887 1.3862944
## 6301                               1 3.806662 0.0000000 1.9459101
## 6302                               1 5.416100 4.1431347 0.0000000
## 6303                               1 4.499810 0.0000000 1.9459101
## 6304                               2 4.787492 3.4339872 1.6094379
## 6305                               1 5.010635 2.7080502 1.3862944
## 6306                               2 4.382027 3.9318256 1.3862944
## 6307                               1 5.616771 2.3978953 0.6931472
## 6308                               1 4.700480 3.5553481 2.6390573
## 6309                               1 5.501258 1.0986123 0.0000000
## 6310                               1 4.744932 3.9318256 1.6094379
## 6311                               5 3.988984 6.0637852 0.0000000
## 6312                               1 5.273000 1.0986123 0.6931472
## 6313                               2 6.902743 3.7612001 0.6931472
## 6314                               1 4.787492 1.9459101 2.3025851
## 6315                               1 4.905275 4.3567088 0.6931472
## 6316                               5 5.010635 3.6375862 0.0000000
## 6317                               1 4.110874 5.1179938 1.9459101
## 6318                               1 4.143135 4.6443909 0.0000000
## 6319                               1 5.220356 3.0445224 1.9459101
## 6320                               1 3.496508 2.9957323 3.3322045
## 6321                               1 4.007333 1.0986123 0.6931472
## 6322                               1 5.010635 2.0794415 1.6094379
## 6323                               1 4.382027 1.0986123 3.0445224
## 6324                               1 4.369448 2.0794415 0.6931472
## 6325                               1 4.941642 1.6094379 0.6931472
## 6326                               1 5.288267 2.7080502 0.6931472
## 6327                               2 4.762174 4.8362819 1.0986123
## 6328                               1 4.828314 0.6931472 1.0986123
## 6329                               1 6.234411 2.4849066 1.0986123
## 6330                               1 4.828314 1.6094379 0.6931472
## 6331                               1 4.174387 4.1108739 0.0000000
## 6332                               1 5.273000 3.0445224 1.7917595
## 6333                               1 4.744932 2.0794415 1.0986123
## 6334                               1 4.905275 3.4339872 1.0986123
## 6335                               1 5.857933 1.6094379 1.0986123
## 6336                               4 4.744932 3.3322045 0.0000000
## 6337                               4 3.806662 5.3230100 0.0000000
## 6338                               1 4.174387 3.0445224 0.6931472
## 6339                               1 4.905275 1.0986123 3.4011974
## 6340                               2 5.293305 4.7791235 3.4011974
## 6341                               1 5.273000 1.6094379 1.7917595
## 6342                               1 5.010635 0.0000000 1.6094379
## 6343                               1 4.094345 0.0000000 0.6931472
## 6344                               1 4.248495 3.0445224 2.3978953
## 6345                               1 4.605170 3.6375862 1.3862944
## 6346                               1 5.192957 1.0986123 1.0986123
## 6347                               1 4.653960 2.9444390 0.6931472
## 6348                               1 4.700480 1.9459101 4.4998097
## 6349                              43 3.637586 1.6094379 1.7917595
## 6350                               2 4.248495 0.0000000 0.0000000
## 6351                               1 4.276666 2.3978953 1.9459101
## 6352                               2 4.317488 3.5553481 0.0000000
## 6353                               3 4.143135 5.3423343 0.0000000
## 6354                               3 4.060443 5.2678582 0.0000000
## 6355                               1 4.976734 4.1431347 1.6094379
## 6356                               2 3.806662 1.0986123 0.0000000
## 6357                               3 4.094345 4.3438054 0.6931472
## 6358                               1 5.062595 0.6931472 4.6051702
## 6359                               2 4.934474 1.0986123 0.0000000
## 6360                               1 3.806662 2.9957323 1.6094379
## 6361                              15 4.595120 2.5649494 3.4011974
## 6362                               1 4.442651 0.0000000 1.0986123
## 6363                               4 4.442651 2.6390573 2.3025851
## 6364                               1 4.553877 0.6931472 1.0986123
## 6365                               1 5.010635 3.8066625 1.0986123
## 6366                               1 4.564348 4.4067192 1.0986123
## 6367                               1 5.438079 0.0000000 0.6931472
## 6368                               1 5.010635 1.3862944 1.3862944
## 6369                               1 5.416100 0.6931472 0.6931472
## 6370                               1 4.867534 4.9272537 1.0986123
## 6371                               1 4.744932 0.0000000 1.3862944
## 6372                               1 4.836282 1.0986123 1.0986123
## 6373                               1 5.159055 2.8332133 1.6094379
## 6374                               1 5.003946 2.5649494 1.6094379
## 6375                               1 5.010635 2.3025851 1.3862944
## 6376                               2 4.605170 0.0000000 0.6931472
## 6377                               1 5.010635 2.7725887 1.6094379
## 6378                               2 4.488636 4.0253517 1.3862944
## 6379                               2 5.730100 4.1271344 0.6931472
## 6380                              39 5.010635 1.6094379 3.4011974
## 6381                               4 4.007333 4.4998097 0.0000000
## 6382                               1 4.007333 2.7725887 0.0000000
## 6383                               1 4.934474 0.6931472 0.6931472
## 6384                               2 4.499810 3.2958369 0.0000000
## 6385                               1 5.517453 5.0106353 1.0986123
## 6386                               1 4.553877 3.8918203 0.0000000
## 6387                               2 4.905275 4.3694479 0.6931472
## 6388                               1 5.666427 5.1298987 2.3025851
## 6389                               2 4.574711 3.8501476 0.6931472
## 6390                               1 5.192957 4.4308168 3.4011974
## 6391                               1 4.317488 3.4657359 3.4011974
## 6392                               1 5.768321 2.3025851 1.7917595
## 6393                               5 4.094345 4.1896547 1.6094379
## 6394                               5 4.094345 4.7706846 1.0986123
## 6395                               1 4.969813 1.7917595 2.7080502
## 6396                               1 3.850148 0.6931472 0.6931472
## 6397                               1 4.605170 2.9444390 1.0986123
## 6398                              39 5.521461 1.0986123 3.4011974
## 6399                               1 4.744932 2.1972246 2.0794415
## 6400                               1 4.094345 0.0000000 1.9459101
## 6401                               1 4.905275 5.2729996 0.6931472
## 6402                               3 3.912023 5.1357984 0.6931472
## 6403                               1 5.003946 0.0000000 1.0986123
## 6404                               2 4.787492 0.0000000 0.6931472
## 6405                               1 5.010635 3.0910425 1.6094379
## 6406                               2 4.553877 3.0445224 0.0000000
## 6407                               1 5.247024 2.4849066 0.6931472
## 6408                               2 4.934474 4.3438054 1.3862944
## 6409                               1 4.867534 0.6931472 0.6931472
## 6410                               3 4.828314 4.8202816 1.0986123
## 6411                               2 3.806662 2.6390573 3.0445224
## 6412                               1 4.700480 2.0794415 1.3862944
## 6413                               1 4.787492 2.4849066 3.0445224
## 6414                               1 3.912023 0.0000000 0.0000000
## 6415                               1 4.605170 1.0986123 0.6931472
## 6416                               1 4.317488 2.6390573 0.6931472
## 6417                              52 4.859812 1.9459101 3.4011974
## 6418                               1 5.278115 4.1896547 1.6094379
## 6419                               2 4.941642 0.0000000 2.4849066
## 6420                               1 4.007333 1.3862944 0.0000000
## 6421                               2 5.164786 3.1780538 0.6931472
## 6422                               1 4.499810 3.1780538 1.0986123
## 6423                               1 5.638355 1.0986123 0.0000000
## 6424                               1 3.912023 3.0445224 0.6931472
## 6425                               1 4.174387 3.8918203 0.0000000
## 6426                               1 4.442651 5.4930614 0.0000000
## 6427                               3 3.637586 2.7080502 1.0986123
## 6428                               4 4.077537 2.7080502 0.0000000
## 6429                               1 3.688879 2.7080502 1.3862944
## 6430                               1 5.433722 0.6931472 1.0986123
## 6431                               1 4.248495 0.0000000 0.6931472
## 6432                               1 5.247024 0.6931472 1.9459101
## 6433                               1 5.010635 4.6913479 1.0986123
## 6434                               5 4.219508 4.7449321 1.6094379
## 6435                               1 4.691348 0.6931472 0.6931472
## 6436                               2 3.610918 1.0986123 3.4011974
## 6437                               2 4.820282 4.6728288 0.0000000
## 6438                               1 5.247024 2.1972246 0.6931472
## 6439                               4 5.075174 5.3471075 0.0000000
## 6440                               1 5.075174 4.7095302 0.0000000
## 6441                               1 3.891820 0.6931472 0.0000000
## 6442                              52 5.068904 2.1972246 3.4011974
## 6443                               1 5.010635 2.0794415 0.6931472
## 6444                               1 4.174387 2.0794415 0.0000000
## 6445                               5 3.912023 2.9957323 0.6931472
## 6446                               1 5.170484 1.9459101 1.6094379
## 6447                               1 4.499810 0.0000000 0.0000000
## 6448                               1 5.164786 2.0794415 0.6931472
## 6449                               1 4.828314 0.6931472 1.7917595
## 6450                               1 5.517453 5.2626902 1.0986123
## 6451                              52 4.465908 1.9459101 3.4011974
## 6452                               1 6.204558 4.5538769 0.6931472
## 6453                               1 4.787492 3.0445224 3.4011974
## 6454                               1 4.700480 3.2188758 1.7917595
## 6455                               1 5.068904 2.5649494 0.6931472
## 6456                               2 5.241747 5.1761497 0.6931472
## 6457                               2 4.077537 2.4849066 0.0000000
## 6458                               1 5.293305 0.0000000 1.0986123
## 6459                               5 3.951244 0.0000000 2.4849066
## 6460                               2 5.293305 4.5849675 0.6931472
## 6461                               2 3.988984 3.8286414 0.0000000
## 6462                               1 3.891820 4.0775374 1.0986123
## 6463                               1 5.521461 2.3025851 0.0000000
## 6464                               1 3.806662 0.6931472 0.0000000
## 6465                               8 3.912023 5.3659760 0.0000000
## 6466                               1 5.298317 4.4308168 0.6931472
## 6467                               1 3.637586 2.5649494 1.6094379
## 6468                               1 5.703782 4.1271344 0.6931472
## 6469                               2 4.007333 1.9459101 2.7080502
## 6470                               2 3.295837 2.1972246 3.4011974
## 6471                               1 5.298317 0.0000000 1.7917595
## 6472                              15 4.595120 2.5649494 3.4011974
## 6473                               1 4.382027 1.6094379 1.6094379
## 6474                               1 5.521461 5.1239640 0.6931472
## 6475                               3 4.077537 2.5649494 1.3862944
## 6476                               4 4.043051 4.6634391 0.6931472
## 6477                              39 5.135798 2.9957323 3.4011974
## 6478                               1 3.912023 0.0000000 0.0000000
## 6479                               1 3.891820 0.0000000 0.0000000
## 6480                               1 4.174387 0.6931472 1.3862944
## 6481                               2 5.521461 4.6443909 1.0986123
## 6482                               1 5.298317 3.1780538 1.3862944
## 6483                               1 4.700480 2.3025851 0.6931472
## 6484                               1 5.521461 2.5649494 3.4011974
## 6485                               2 4.290459 5.2933048 0.0000000
## 6486                               1 4.828314 0.0000000 0.0000000
## 6487                               1 3.583519 4.2341065 0.0000000
## 6488                               1 4.595120 4.6051702 0.0000000
## 6489                               1 4.605170 2.0794415 0.6931472
## 6490                               1 4.262680 4.0253517 2.3025851
## 6491                               1 4.605170 1.3862944 0.6931472
## 6492                               1 4.442651 3.3322045 0.0000000
## 6493                               1 5.129899 2.7725887 0.6931472
## 6494                               1 5.003946 1.0986123 0.6931472
## 6495                               1 4.488636 4.5108595 0.0000000
## 6496                              43 3.784190 0.0000000 3.4011974
## 6497                               1 5.010635 5.4510385 0.6931472
## 6498                               1 4.828314 4.2904594 0.6931472
## 6499                              43 3.737670 0.6931472 1.7917595
## 6500                               1 5.703782 0.0000000 1.9459101
## 6501                               1 5.521461 1.0986123 1.9459101
## 6502                               1 4.248495 5.7838252 0.0000000
## 6503                               1 4.382027 0.6931472 2.7080502
## 6504                               1 4.174387 4.8828019 0.6931472
## 6505                               1 5.117994 0.6931472 1.6094379
## 6506                              39 4.867534 2.3025851 3.4011974
## 6507                               1 4.744932 4.0943446 0.6931472
## 6508                               2 4.543295 5.2933048 1.3862944
## 6509                               2 5.220356 4.9199809 1.3862944
## 6510                               1 5.273000 2.6390573 1.9459101
## 6511                               1 4.499810 0.0000000 1.3862944
## 6512                               1 4.595120 1.9459101 5.8998974
## 6513                               1 6.212606 1.3862944 3.4011974
## 6514                               1 5.192957 4.9052748 0.6931472
## 6515                               1 5.703782 1.0986123 0.6931472
## 6516                               1 4.605170 5.0498560 0.6931472
## 6517                               2 4.897840 4.9344739 1.0986123
## 6518                               2 3.891820 3.8918203 0.6931472
## 6519                               2 3.850148 4.5108595 0.6931472
## 6520                               1 4.787492 2.8332133 0.6931472
## 6521                              34 5.220356 2.1972246 3.4011974
## 6522                               1 5.129899 4.9126549 3.4011974
## 6523                               2 4.867534 3.1354942 2.6390573
## 6524                               1 4.700480 1.0986123 0.0000000
## 6525                               1 4.804021 3.0445224 1.3862944
## 6526                               1 5.010635 0.6931472 0.0000000
## 6527                              52 4.859812 0.0000000 3.4011974
## 6528                               8 4.174387 4.3307333 0.0000000
## 6529                              34 4.744932 2.8903718 3.4011974
## 6530                               1 4.094345 4.3944492 0.6931472
## 6531                               1 5.010635 0.0000000 1.9459101
## 6532                               1 5.298317 3.5553481 1.7917595
## 6533                               1 4.700480 0.0000000 3.4011974
## 6534                               6 5.556828 4.2766661 0.0000000
## 6535                               1 5.010635 1.6094379 0.0000000
## 6536                               1 4.941642 0.6931472 0.0000000
## 6537                              15 4.248495 3.8918203 0.0000000
## 6538                               3 6.715383 3.3322045 1.6094379
## 6539                               1 5.521461 2.7080502 0.0000000
## 6540                               1 4.060443 1.3862944 0.6931472
## 6541                               2 4.955827 4.6634391 1.3862944
## 6542                               1 4.787492 5.2678582 1.0986123
## 6543                               1 4.912655 3.7612001 3.4011974
## 6544                               3 4.007333 4.2626799 0.6931472
## 6545                               2 4.317488 0.0000000 0.0000000
## 6546                               1 4.634729 4.5849675 0.6931472
## 6547                              21 5.262690 0.0000000 3.4011974
## 6548                               3 6.551080 1.7917595 0.0000000
## 6549                               1 5.298317 2.6390573 3.4011974
## 6550                              39 4.976734 2.3978953 3.4011974
## 6551                               1 5.298317 2.6390573 2.6390573
## 6552                               1 5.075174 3.9889840 0.0000000
## 6553                               1 3.806662 3.7612001 0.6931472
## 6554                               1 5.017280 2.4849066 1.9459101
## 6555                               1 4.584967 2.9957323 0.6931472
## 6556                              39 5.220356 2.7080502 3.4011974
## 6557                               1 5.010635 1.7917595 1.3862944
## 6558                               1 5.135798 1.9459101 1.0986123
## 6559                               1 4.779123 4.4188406 0.6931472
## 6560                               8 5.433722 1.6094379 1.6094379
## 6561                               1 4.382027 1.6094379 0.6931472
## 6562                               2 6.214608 4.2195077 0.0000000
## 6563                               1 4.787492 2.4849066 0.0000000
## 6564                               1 4.905275 2.8332133 1.0986123
## 6565                               1 6.261492 4.0430513 1.0986123
## 6566                               2 5.068904 4.9558271 1.3862944
## 6567                               2 4.290459 4.9972123 0.0000000
## 6568                               1 4.248495 0.6931472 0.6931472
## 6569                               1 5.123964 0.0000000 1.9459101
## 6570                               1 5.129899 4.3307333 1.0986123
## 6571                               1 4.442651 1.7917595 1.3862944
## 6572                              43 3.637586 0.0000000 3.4011974
## 6573                              43 3.871201 0.6931472 3.4011974
## 6574                               3 3.737670 3.2188758 0.6931472
## 6575                               3 4.382027 4.0430513 3.4011974
## 6576                               1 4.976734 2.0794415 1.0986123
## 6577                               3 4.276666 2.8903718 0.6931472
## 6578                               2 4.553877 5.2257467 0.6931472
## 6579                               3 3.806662 3.8918203 1.3862944
## 6580                               1 5.521461 4.1588831 0.6931472
## 6581                               1 4.290459 1.3862944 1.6094379
## 6582                               1 4.605170 0.0000000 0.0000000
## 6583                               1 3.912023 0.0000000 0.0000000
## 6584                               1 5.105945 4.3174881 0.0000000
## 6585                               2 5.214936 4.8121844 1.0986123
## 6586                               1 4.905275 4.5747110 0.6931472
## 6587                               1 5.075174 3.9702919 0.6931472
## 6588                               1 4.595120 4.2766661 1.0986123
## 6589                               1 4.442651 1.0986123 2.3025851
## 6590                               1 5.293305 0.0000000 0.0000000
## 6591                               1 5.273000 1.0986123 0.6931472
## 6592                               3 4.382027 4.8978398 0.0000000
## 6593                               1 4.234107 3.0445224 2.7080502
## 6594                               1 4.976734 2.5649494 1.0986123
## 6595                               2 3.951244 2.0794415 1.0986123
## 6596                               1 4.382027 0.6931472 1.6094379
## 6597                               1 5.703782 2.1972246 0.6931472
## 6598                               1 4.317488 0.6931472 2.9957323
## 6599                               1 5.192957 1.9459101 1.0986123
## 6600                               1 4.127134 4.1271344 1.7917595
## 6601                               1 6.620073 3.9120230 0.0000000
## 6602                               2 5.521461 2.7725887 1.0986123
## 6603                               1 4.595120 2.0794415 0.0000000
## 6604                               1 4.787492 2.8332133 1.9459101
## 6605                               1 5.010635 4.0604430 1.0986123
## 6606                               1 5.010635 1.7917595 2.6390573
## 6607                               3 4.595120 3.5553481 0.6931472
## 6608                               4 5.298317 2.1972246 3.4011974
## 6609                               3 4.077537 4.3174881 0.0000000
## 6610                               1 4.430817 1.6094379 0.6931472
## 6611                              34 4.941642 2.3978953 3.4011974
## 6612                               1 4.499810 2.0794415 1.3862944
## 6613                               2 5.521461 3.4965076 1.0986123
## 6614                               1 5.247024 4.7791235 0.6931472
## 6615                               1 5.697093 2.8332133 1.0986123
## 6616                               1 4.595120 4.9126549 0.6931472
## 6617                               1 5.521461 2.4849066 0.6931472
## 6618                               1 4.553877 0.6931472 1.9459101
## 6619                               2 4.077537 4.6913479 1.3862944
## 6620                               1 4.744932 1.9459101 0.0000000
## 6621                               1 5.298317 1.7917595 0.6931472
## 6622                               1 4.317488 2.0794415 0.0000000
## 6623                               1 4.744932 1.3862944 1.6094379
## 6624                               1 4.983607 3.8066625 1.0986123
## 6625                               5 4.700480 1.3862944 1.0986123
## 6626                               1 6.109248 4.9199809 1.6094379
## 6627                               4 5.075174 5.1298987 0.0000000
## 6628                               1 5.003946 2.7080502 0.6931472
## 6629                               1 4.605170 3.4657359 0.6931472
## 6630                               1 5.393628 4.7706846 1.0986123
## 6631                               1 4.787492 5.6419071 0.0000000
## 6632                               1 4.595120 3.1780538 3.2188758
## 6633                               1 4.174387 3.2958369 0.0000000
## 6634                               1 3.912023 0.0000000 1.3862944
## 6635                               9 4.317488 2.0794415 3.4011974
## 6636                               4 4.442651 1.0986123 0.6931472
## 6637                               2 7.600902 3.3322045 3.6888795
## 6638                               1 5.003946 0.0000000 0.6931472
## 6639                               1 3.970292 1.6094379 0.6931472
## 6640                               1 5.783825 0.6931472 1.0986123
## 6641                               1 3.806662 2.5649494 0.6931472
## 6642                              43 3.637586 1.3862944 3.4011974
## 6643                               1 4.787492 3.6375862 1.0986123
## 6644                              43 3.637586 1.6094379 3.4011974
## 6645                               1 4.094345 3.4339872 1.0986123
## 6646                               1 5.247024 2.7725887 1.0986123
## 6647                               1 4.828314 2.7725887 0.6931472
## 6648                               1 4.248495 4.8751973 0.0000000
## 6649                               1 4.867534 3.8066625 0.0000000
## 6650                               1 3.806662 0.0000000 0.0000000
## 6651                               1 4.700480 1.9459101 3.4011974
## 6652                               2 4.094345 2.8903718 1.0986123
## 6653                               1 4.828314 1.9459101 2.6390573
## 6654                               1 4.394449 1.0986123 0.0000000
## 6655                               1 4.653960 1.9459101 0.0000000
## 6656                               1 5.298317 0.0000000 1.9459101
## 6657                               1 4.317488 2.1972246 0.6931472
## 6658                               1 5.521461 2.8332133 1.6094379
## 6659                               1 5.991465 4.6151205 0.6931472
## 6660                               1 5.075174 4.8978398 1.0986123
## 6661                               2 4.700480 5.1647860 0.0000000
## 6662                               2 5.393628 4.3307333 0.0000000
## 6663                               2 4.905275 4.9972123 1.0986123
## 6664                               1 4.595120 3.7135721 0.6931472
## 6665                               1 4.488636 1.7917595 1.3862944
## 6666                               1 4.317488 3.4657359 1.0986123
## 6667                              11 7.600902 2.1972246 3.4011974
## 6668                               2 6.163315 4.0430513 0.6931472
## 6669                               1 5.438079 3.7135721 1.3862944
## 6670                               1 4.828314 1.9459101 0.6931472
## 6671                               1 5.192957 0.6931472 0.6931472
## 6672                               1 4.382027 0.0000000 1.6094379
## 6673                               1 4.007333 1.9459101 0.0000000
## 6674                               2 4.905275 4.9416424 1.0986123
## 6675                               2 5.204007 4.0253517 1.3862944
## 6676                               4 5.342334 2.6390573 3.4011974
## 6677                               1 4.356709 3.2580965 1.9459101
## 6678                              43 3.871201 1.0986123 3.4011974
## 6679                               1 4.394449 5.1059455 1.3862944
## 6680                               2 4.382027 2.4849066 0.6931472
## 6681                              52 4.859812 1.6094379 3.4011974
## 6682                               1 4.605170 3.3322045 1.0986123
## 6683                               2 3.555348 3.9889840 1.0986123
## 6684                               2 4.605170 5.4930614 0.6931472
## 6685                               3 4.406719 2.3978953 0.6931472
## 6686                               1 4.852030 3.7841896 1.3862944
## 6687                               1 5.068904 2.6390573 3.4011974
## 6688                               1 4.615121 1.3862944 1.9459101
## 6689                               4 5.273000 4.0253517 1.6094379
## 6690                              11 7.600902 2.1972246 3.4011974
## 6691                               1 5.075174 4.0430513 0.6931472
## 6692                               4 5.273000 4.1271344 1.6094379
## 6693                               1 6.163315 0.0000000 1.0986123
## 6694                               1 4.804021 3.5263605 1.0986123
## 6695                               2 3.806662 1.7917595 2.6390573
## 6696                               1 5.459586 2.3025851 1.6094379
## 6697                               2 5.616771 2.7080502 1.9459101
## 6698                               2 4.595120 3.5553481 0.6931472
## 6699                               1 4.828314 3.9318256 1.0986123
## 6700                               1 4.828314 4.1588831 1.0986123
## 6701                               1 5.105945 4.0604430 1.0986123
## 6702                               1 4.859812 5.1817836 0.0000000
## 6703                               1 5.010635 0.0000000 1.7917595
## 6704                               1 4.499810 5.0172798 0.0000000
## 6705                               1 5.164786 4.4426513 1.0986123
## 6706                               2 5.236442 4.9836066 1.0986123
## 6707                               1 4.382027 2.3978953 1.0986123
## 6708                               2 5.075174 1.0986123 1.9459101
## 6709                               1 4.605170 0.0000000 1.0986123
## 6710                               1 3.912023 2.7080502 1.3862944
## 6711                               1 4.248495 1.0986123 1.0986123
## 6712                               1 4.867534 4.4188406 1.9459101
## 6713                               1 5.192957 3.0445224 1.0986123
## 6714                               1 5.010635 1.0986123 4.4998097
## 6715                               5 4.234107 2.9957323 0.0000000
## 6716                               1 4.127134 3.8501476 1.6094379
## 6717                               1 5.010635 2.0794415 0.6931472
## 6718                               1 4.770685 0.0000000 1.6094379
## 6719                               1 5.273000 2.3025851 2.4849066
## 6720                               1 4.317488 5.0434251 0.0000000
## 6721                               1 4.905275 2.9957323 2.6390573
## 6722                               1 6.109248 1.0986123 0.6931472
## 6723                               1 3.806662 2.3025851 0.0000000
## 6724                               1 5.521461 5.0998664 1.0986123
## 6725                               1 4.787492 0.0000000 0.0000000
## 6726                               1 4.828314 3.6888795 0.6931472
## 6727                              29 4.770685 1.3862944 3.4011974
## 6728                               1 4.605170 4.6728288 0.6931472
## 6729                               1 3.688879 0.6931472 2.3025851
## 6730                               1 5.416100 1.0986123 0.0000000
## 6731                              39 5.220356 1.7917595 3.4011974
## 6732                               1 5.416100 2.8332133 0.0000000
## 6733                               3 5.043425 4.0604430 1.3862944
## 6734                               1 5.105945 5.1119878 0.0000000
## 6735                              21 5.105945 1.0986123 3.4011974
## 6736                              52 5.003946 0.0000000 3.4011974
## 6737                              29 4.955827 1.0986123 3.4011974
## 6738                               1 4.077537 4.9272537 1.3862944
## 6739                               1 5.298317 1.7917595 0.6931472
## 6740                               1 4.828314 0.0000000 1.9459101
## 6741                               1 5.198497 5.4722707 0.6931472
## 6742                               1 4.499810 1.0986123 0.6931472
## 6743                               1 4.248495 2.0794415 1.0986123
## 6744                               1 5.010635 1.0986123 0.6931472
## 6745                               1 5.416100 2.5649494 1.0986123
## 6746                               1 5.480639 2.0794415 1.9459101
## 6747                               1 4.584967 2.3978953 1.6094379
## 6748                               1 4.605170 2.7080502 1.6094379
## 6749                               1 5.298317 2.0794415 0.6931472
## 6750                               1 5.010635 0.6931472 0.0000000
## 6751                               3 4.859812 2.8903718 3.4011974
## 6752                               1 4.174387 0.0000000 1.9459101
## 6753                               1 4.248495 2.4849066 1.9459101
## 6754                               1 5.298317 2.1972246 1.0986123
## 6755                               2 4.060443 3.5263605 0.0000000
## 6756                               1 5.192957 4.2046926 1.3862944
## 6757                               3 4.787492 1.0986123 1.9459101
## 6758                               1 5.497168 3.6375862 1.3862944
## 6759                               1 3.688879 2.9957323 1.0986123
## 6760                               2 4.905275 5.5174529 0.6931472
## 6761                               2 4.174387 3.1780538 0.0000000
## 6762                               1 4.941642 5.4467374 0.6931472
## 6763                              52 4.859812 0.0000000 3.4011974
## 6764                               1 4.718499 1.0986123 0.6931472
## 6765                               1 4.382027 3.8712010 0.6931472
## 6766                               1 5.003946 1.7917595 1.9459101
## 6767                               1 4.595120 0.6931472 1.3862944
## 6768                               1 3.912023 1.7917595 0.0000000
## 6769                               1 5.247024 3.5263605 0.6931472
## 6770                               2 4.248495 5.1647860 0.6931472
## 6771                               3 3.401197 2.3978953 1.0986123
## 6772                               1 4.564348 2.6390573 3.0445224
## 6773                              29 4.770685 1.0986123 3.4011974
## 6774                               1 5.010635 3.0445224 0.6931472
## 6775                               2 5.857933 1.3862944 0.0000000
## 6776                               3 5.416100 4.4067192 1.0986123
## 6777                               9 4.700480 2.8332133 3.4011974
## 6778                               1 5.501258 2.0794415 1.3862944
## 6779                               1 4.174387 4.0604430 0.6931472
## 6780                               8 4.094345 4.6051702 0.0000000
## 6781                               1 4.219508 4.6539604 1.0986123
## 6782                               1 5.273000 1.7917595 1.0986123
## 6783                               1 4.382027 1.0986123 2.3025851
## 6784                               1 5.273000 4.0073332 1.6094379
## 6785                               1 5.616771 0.0000000 0.0000000
## 6786                               2 3.891820 5.0172798 0.6931472
## 6787                               2 3.401197 0.0000000 3.0445224
## 6788                               1 5.010635 3.8712010 1.6094379
## 6789                               1 4.941642 1.6094379 1.6094379
## 6790                               1 5.075174 2.1972246 1.9459101
## 6791                               1 4.828314 1.3862944 1.0986123
## 6792                               7 3.912023 4.1108739 0.6931472
## 6793                               2 4.605170 5.7525726 0.0000000
## 6794                               2 3.912023 5.1984970 0.0000000
## 6795                               1 5.768321 2.1972246 3.4011974
## 6796                               1 5.298317 3.7135721 1.9459101
## 6797                               1 4.248495 5.2983174 0.6931472
## 6798                               1 4.248495 2.7725887 1.0986123
## 6799                               1 5.298317 0.6931472 0.6931472
## 6800                               3 4.605170 4.2626799 3.4011974
## 6801                               1 5.010635 0.6931472 1.0986123
## 6802                               1 5.220356 2.1972246 0.0000000
## 6803                               1 4.828314 4.7621739 1.0986123
## 6804                               2 4.997212 2.3978953 0.0000000
## 6805                               3 5.686975 1.7917595 0.0000000
## 6806                               4 3.806662 3.2958369 2.6390573
## 6807                               2 4.736198 4.3944492 0.6931472
## 6808                               1 3.806662 2.5649494 1.7917595
## 6809                               2 4.442651 2.6390573 0.6931472
## 6810                               4 4.174387 5.0562458 0.0000000
## 6811                               1 5.634790 4.8040210 1.0986123
## 6812                               1 4.174387 0.0000000 0.0000000
## 6813                               2 4.174387 4.9126549 0.0000000
## 6814                               2 4.174387 4.7874917 0.0000000
## 6815                               1 5.541264 2.4849066 1.7917595
## 6816                               2 3.988984 3.8501476 1.0986123
## 6817                               6 4.499810 3.4011974 3.4011974
## 6818                               6 4.499810 3.8501476 3.4011974
## 6819                               6 4.499810 3.8501476 3.4011974
## 6820                               1 4.787492 3.3322045 1.6094379
## 6821                               1 5.347108 1.0986123 0.0000000
## 6822                               1 5.010635 0.6931472 1.9459101
## 6823                               1 4.941642 4.9052748 0.6931472
## 6824                               1 4.382027 0.6931472 0.0000000
## 6825                               1 5.298317 4.1108739 0.6931472
## 6826                               1 6.109248 2.4849066 1.7917595
## 6827                               1 4.753590 4.8598124 0.6931472
## 6828                               4 5.370638 3.5835189 0.0000000
## 6829                               2 5.075174 3.5835189 3.4011974
## 6830                               1 5.010635 0.6931472 3.2188758
## 6831                              52 5.003946 1.9459101 3.4011974
## 6832                               1 4.174387 4.6821312 1.6094379
## 6833                               1 5.560682 4.0253517 1.9459101
## 6834                               4 5.991465 0.6931472 0.0000000
## 6835                               1 4.499810 0.0000000 0.0000000
## 6836                               1 4.317488 1.7917595 0.6931472
## 6837                               1 4.317488 3.8066625 0.6931472
## 6838                               1 4.700480 1.0986123 0.0000000
## 6839                               3 4.744932 5.0304379 0.6931472
## 6840                               1 4.406719 1.0986123 1.6094379
## 6841                               1 4.499810 1.6094379 0.0000000
## 6842                               5 4.234107 4.9972123 0.6931472
## 6843                               5 4.234107 4.8441871 1.0986123
## 6844                               5 5.517453 2.3025851 1.0986123
## 6845                               5 4.488636 4.7535902 1.0986123
## 6846                               5 5.068904 3.4011974 1.0986123
## 6847                               1 5.393628 0.0000000 0.0000000
## 6848                               1 4.553877 2.4849066 1.0986123
## 6849                               1 4.094345 2.5649494 0.0000000
## 6850                               1 5.187386 1.9459101 1.6094379
## 6851                               3 4.454347 2.0794415 0.0000000
## 6852                               1 4.127134 3.8501476 1.0986123
## 6853                               1 5.105945 3.8286414 1.7917595
## 6854                               2 4.488636 1.3862944 2.6390573
## 6855                              29 4.753590 0.6931472 3.4011974
## 6856                              21 5.147494 1.7917595 3.4011974
## 6857                               1 4.828314 2.3978953 1.9459101
## 6858                               1 4.499810 2.7725887 0.6931472
## 6859                               1 5.521461 1.0986123 0.0000000
## 6860                               3 5.220356 5.3612922 1.0986123
## 6861                               1 4.143135 4.4426513 1.6094379
## 6862                               1 5.093750 2.4849066 1.0986123
## 6863                               1 5.273000 2.9444390 1.6094379
## 6864                               3 4.488636 4.2195077 0.0000000
## 6865                               2 3.806662 0.6931472 0.6931472
## 6866                               1 4.094345 1.6094379 0.0000000
## 6867                               3 4.828314 3.7841896 0.0000000
## 6868                               1 4.442651 2.3978953 0.6931472
## 6869                               1 5.105945 4.2904594 1.3862944
## 6870                               3 4.969813 2.8332133 1.9459101
## 6871                               2 4.094345 1.0986123 1.3862944
## 6872                              11 4.553877 3.6888795 3.4011974
## 6873                              11 4.553877 3.9702919 3.4011974
## 6874                              11 4.553877 3.8286414 3.4011974
## 6875                              11 4.553877 3.5553481 3.4011974
## 6876                              11 4.553877 3.7612001 3.4011974
## 6877                               2 4.174387 2.7080502 1.6094379
## 6878                               1 4.174387 4.1271344 1.6094379
## 6879                               2 4.700480 5.5134287 0.6931472
## 6880                               3 3.850148 1.9459101 1.6094379
## 6881                               1 5.164786 1.6094379 3.4011974
## 6882                               1 5.455321 2.3978953 1.3862944
## 6883                               1 4.653960 3.7612001 2.6390573
## 6884                               3 3.850148 3.6888795 0.6931472
## 6885                               3 4.007333 4.0073332 0.6931472
## 6886                               2 4.983607 4.2046926 1.6094379
## 6887                               2 4.094345 4.7706846 1.3862944
## 6888                               4 4.110874 3.4339872 2.4849066
## 6889                               1 4.430817 0.6931472 0.0000000
## 6890                               1 5.187386 4.0073332 0.6931472
## 6891                               1 5.164786 0.0000000 0.0000000
## 6892                               1 5.521461 0.0000000 0.6931472
## 6893                               2 4.418841 4.0430513 1.0986123
## 6894                               2 4.653960 4.0775374 0.0000000
## 6895                               1 4.828314 1.6094379 0.6931472
## 6896                               1 5.010635 2.4849066 1.9459101
## 6897                               2 4.234107 2.7725887 3.4011974
## 6898                               1 5.247024 0.0000000 0.6931472
## 6899                               1 4.330733 3.5263605 0.6931472
## 6900                               1 4.955827 2.0794415 1.6094379
## 6901                               1 4.828314 1.3862944 1.9459101
## 6902                               1 5.298317 2.6390573 1.0986123
## 6903                              11 5.556828 4.5432948 0.0000000
## 6904                               1 5.616771 0.0000000 1.6094379
## 6905                               1 5.187386 3.3322045 0.0000000
## 6906                               1 4.248495 5.0238805 0.0000000
## 6907                               1 5.556828 4.5951199 0.6931472
## 6908                               1 5.703782 1.7917595 0.6931472
## 6909                               1 4.553877 1.3862944 1.0986123
## 6910                               4 4.882802 4.9628446 0.0000000
## 6911                               1 4.382027 1.0986123 1.3862944
## 6912                               1 4.442651 1.0986123 1.0986123
## 6913                               3 3.912023 5.0369526 0.0000000
## 6914                               1 4.317488 1.7917595 0.6931472
## 6915                               1 5.342334 3.2958369 3.4011974
## 6916                               1 5.799093 1.3862944 0.6931472
## 6917                               2 4.007333 3.2580965 0.0000000
## 6918                               1 4.094345 0.0000000 1.9459101
## 6919                               1 5.192957 1.3862944 3.4011974
## 6920                               2 5.703782 4.0943446 0.6931472
## 6921                               1 5.164786 1.7917595 1.0986123
## 6922                               1 4.605170 1.3862944 1.0986123
## 6923                               1 5.164786 3.0445224 1.6094379
## 6924                               1 5.164786 0.0000000 2.3025851
## 6925                               1 4.653960 5.0625950 0.0000000
## 6926                               1 3.891820 3.0445224 1.6094379
## 6927                               1 4.174387 3.6109179 0.6931472
## 6928                               4 6.109248 3.6109179 1.6094379
## 6929                               1 5.220356 4.0775374 1.0986123
## 6930                               1 4.043051 4.6443909 0.6931472
## 6931                               2 4.369448 4.5108595 0.0000000
## 6932                               1 5.384495 4.9199809 0.6931472
## 6933                               7 4.248495 2.3978953 3.4011974
## 6934                               1 5.857933 4.2626799 0.6931472
## 6935                               1 4.605170 4.7874917 1.3862944
## 6936                               1 5.010635 3.9318256 1.0986123
## 6937                               2 3.828641 2.8332133 1.3862944
## 6938                               1 3.912023 0.6931472 0.0000000
## 6939                               4 5.652489 4.3040651 3.4011974
## 6940                               1 5.393628 1.6094379 0.6931472
## 6941                               1 4.828314 0.0000000 0.0000000
## 6942                               4 4.382027 4.2484952 0.0000000
## 6943                               3 4.060443 0.6931472 0.0000000
## 6944                               1 4.605170 4.9628446 0.6931472
## 6945                               1 5.164786 3.7376696 0.6931472
## 6946                               1 7.090077 3.7612001 1.6094379
## 6947                               1 5.075174 4.6539604 0.6931472
## 6948                               1 4.174387 1.7917595 0.0000000
## 6949                               2 6.212606 2.3978953 3.4011974
## 6950                               1 5.857933 2.3025851 0.6931472
## 6951                               3 4.653960 4.8441871 0.6931472
## 6952                               1 5.501258 3.4657359 1.6094379
## 6953                               2 4.934474 4.7791235 0.6931472
## 6954                               1 3.912023 2.1972246 2.9957323
## 6955                               1 4.499810 0.6931472 1.9459101
## 6956                               1 5.521461 0.0000000 0.0000000
## 6957                               1 4.248495 0.0000000 1.3862944
## 6958                               1 5.010635 3.7841896 0.0000000
## 6959                               3 4.691348 4.3694479 1.0986123
## 6960                               1 4.941642 4.0775374 1.9459101
## 6961                               2 3.433987 0.0000000 2.3025851
## 6962                              34 4.941642 2.0794415 3.4011974
## 6963                               2 4.174387 3.5835189 0.6931472
## 6964                               1 4.442651 2.8903718 0.6931472
## 6965                               1 5.043425 4.4659081 1.6094379
## 6966                               1 4.828314 0.6931472 1.0986123
## 6967                               1 5.135798 0.6931472 1.6094379
## 6968                               2 4.174387 5.6347896 0.6931472
## 6969                               1 3.637586 0.0000000 1.0986123
## 6970                               1 4.700480 1.3862944 0.6931472
## 6971                               1 4.605170 4.6634391 1.0986123
## 6972                               1 4.828314 2.3025851 0.6931472
## 6973                               1 4.094345 0.0000000 0.0000000
## 6974                               1 4.382027 4.8598124 1.0986123
## 6975                              34 4.553877 2.3978953 3.4011974
## 6976                               1 5.093750 5.9814142 0.6931472
## 6977                               1 5.416100 3.3672958 1.0986123
## 6978                               1 5.135798 0.6931472 2.3025851
## 6979                               1 4.174387 3.6375862 1.3862944
## 6980                               1 4.094345 2.3978953 0.0000000
## 6981                               1 5.123964 2.4849066 3.4011974
## 6982                               1 4.605170 1.0986123 0.6931472
## 6983                               1 4.488636 5.0106353 0.6931472
## 6984                               3 4.691348 5.2522734 1.3862944
## 6985                               1 4.787492 0.0000000 1.3862944
## 6986                               6 3.688879 4.6151205 1.0986123
## 6987                              39 5.010635 2.3025851 3.4011974
## 6988                               1 3.806662 1.0986123 0.6931472
## 6989                               2 5.068904 2.0794415 3.4011974
## 6990                               1 5.003946 2.6390573 1.3862944
## 6991                               1 4.828314 1.0986123 1.0986123
## 6992                               1 4.317488 3.2958369 0.0000000
## 6993                               1 4.691348 1.7917595 1.3862944
## 6994                               1 6.212606 2.9444390 0.0000000
## 6995                               3 5.393628 2.1972246 0.6931472
## 6996                               1 4.007333 3.9318256 1.0986123
## 6997                               1 5.831882 4.9272537 1.0986123
## 6998                               1 4.682131 1.0986123 0.6931472
## 6999                               1 4.852030 4.4188406 1.6094379
## 7000                               1 4.700480 4.5538769 0.6931472
## 7001                               1 5.187386 3.6635616 2.0794415
## 7002                               1 5.164786 0.6931472 1.6094379
## 7003                               1 4.382027 2.0794415 1.6094379
## 7004                               1 5.003946 3.0910425 0.6931472
## 7005                               2 3.912023 1.9459101 0.6931472
## 7006                               1 4.317488 1.3862944 1.6094379
## 7007                               2 4.605170 3.1780538 1.0986123
## 7008                               6 5.910797 4.3040651 0.6931472
## 7009                               1 5.288267 1.9459101 1.9459101
## 7010                               1 4.605170 3.8918203 0.6931472
## 7011                               1 5.273000 4.2046926 1.0986123
## 7012                               1 5.549076 2.3978953 1.0986123
## 7013                               1 4.976734 3.6375862 1.3862944
## 7014                               1 3.806662 1.9459101 0.0000000
## 7015                               4 4.094345 4.4188406 0.6931472
## 7016                               1 4.382027 1.3862944 1.0986123
## 7017                               1 4.595120 5.2094862 0.0000000
## 7018                               1 5.192957 0.0000000 1.0986123
## 7019                              18 3.688879 0.0000000 3.2188758
## 7020                               1 4.564348 3.3322045 1.0986123
## 7021                               1 4.653960 2.1972246 1.3862944
## 7022                               1 4.382027 5.1761497 1.0986123
## 7023                               1 4.605170 0.0000000 0.6931472
## 7024                               2 4.060443 5.5984220 0.0000000
## 7025                               2 4.488636 1.7917595 1.6094379
## 7026                               5 4.653960 5.0937502 4.4998097
## 7027                               1 4.219508 0.6931472 1.0986123
## 7028                               1 5.298317 3.4011974 1.3862944
## 7029                               1 5.135798 3.2580965 1.6094379
## 7030                               1 4.094345 2.1972246 1.6094379
## 7031                               4 5.652489 4.6443909 3.4011974
## 7032                               1 4.499810 4.9272537 1.0986123
## 7033                               1 4.317488 4.6151205 3.4011974
## 7034                               1 4.744932 3.9318256 0.0000000
## 7035                               1 4.770685 0.0000000 3.4011974
## 7036                               1 4.330733 2.9444390 0.0000000
## 7037                               1 5.501258 1.7917595 1.9459101
## 7038                               1 4.317488 1.0986123 1.0986123
## 7039                               1 5.298317 3.1780538 1.7917595
## 7040                              52 4.442651 1.3862944 3.4011974
## 7041                               1 5.857933 2.3978953 1.6094379
## 7042                               1 4.615121 4.1743873 1.0986123
## 7043                               1 4.828314 0.0000000 0.0000000
## 7044                               1 4.488636 2.9444390 1.0986123
## 7045                               1 4.787492 0.0000000 3.4011974
## 7046                               1 5.700444 2.0794415 0.6931472
## 7047                               1 5.273000 4.0943446 0.6931472
## 7048                               3 4.356709 1.0986123 0.0000000
## 7049                               1 5.521461 3.3322045 0.6931472
## 7050                               1 5.010635 0.0000000 2.6390573
## 7051                               1 4.356709 4.7273878 1.0986123
## 7052                               1 4.007333 0.0000000 0.0000000
## 7053                               1 5.703782 1.9459101 2.3025851
## 7054                               3 3.637586 3.6635616 0.6931472
## 7055                               1 5.010635 3.5835189 1.6094379
## 7056                               1 3.951244 0.0000000 0.6931472
## 7057                               1 5.288267 5.0814044 0.6931472
## 7058                               1 3.891820 4.2046926 0.0000000
## 7059                               1 6.856462 1.7917595 1.3862944
## 7060                               9 4.653960 2.4849066 3.4011974
## 7061                               1 5.416100 5.6204009 3.4011974
## 7062                               2 4.828314 2.7725887 1.3862944
## 7063                               1 4.700480 2.9444390 0.6931472
## 7064                               1 3.784190 0.0000000 0.0000000
## 7065                               3 4.343805 4.0430513 0.6931472
## 7066                               1 4.574711 4.1271344 1.0986123
## 7067                               4 3.806662 4.0775374 1.6094379
## 7068                               1 5.056246 0.0000000 0.0000000
## 7069                               1 4.382027 0.0000000 1.3862944
## 7070                               1 3.912023 0.0000000 1.0986123
## 7071                               1 5.616771 4.5643482 1.0986123
## 7072                               1 4.859812 4.6347290 1.0986123
## 7073                               1 5.521461 0.0000000 1.0986123
## 7074                               1 3.583519 4.4308168 0.0000000
## 7075                               1 5.220356 1.3862944 0.0000000
## 7076                               1 4.867534 0.6931472 0.0000000
## 7077                               4 4.174387 6.1441856 0.0000000
## 7078                               1 5.616771 4.3567088 1.0986123
## 7079                               1 4.787492 2.1972246 0.0000000
## 7080                               1 5.192957 3.2188758 0.6931472
## 7081                               1 4.812184 0.6931472 0.6931472
## 7082                               1 5.347108 1.9459101 1.7917595
## 7083                               1 4.934474 1.3862944 1.0986123
## 7084                               1 3.806662 0.0000000 0.0000000
## 7085                               1 4.369448 0.6931472 1.6094379
## 7086                               2 4.499810 0.6931472 0.0000000
## 7087                               1 5.010635 4.1743873 0.6931472
## 7088                               1 5.298317 2.6390573 0.6931472
## 7089                               1 4.605170 4.8441871 1.0986123
## 7090                               2 3.806662 4.7706846 1.3862944
## 7091                               1 4.744932 0.0000000 1.9459101
## 7092                               3 4.025352 4.8828019 0.6931472
## 7093                               1 5.347108 3.7841896 0.6931472
## 7094                              52 4.465908 1.0986123 3.4011974
## 7095                               2 3.688879 1.7917595 3.4011974
## 7096                               1 4.060443 0.0000000 1.3862944
## 7097                               1 4.828314 1.9459101 1.3862944
## 7098                               1 4.605170 1.0986123 0.6931472
## 7099                               1 5.273000 1.0986123 0.6931472
## 7100                               1 4.499810 3.2958369 2.7080502
## 7101                               2 4.174387 3.7612001 0.6931472
## 7102                               1 5.298317 0.6931472 3.4339872
## 7103                               1 4.317488 3.1354942 1.3862944
## 7104                               1 5.393628 1.3862944 0.0000000
## 7105                               1 5.416100 0.0000000 1.0986123
## 7106                               1 5.093750 3.6109179 3.4011974
## 7107                               1 4.442651 4.7706846 0.0000000
## 7108                               1 5.010635 0.0000000 1.9459101
## 7109                               2 3.637586 5.4638318 0.0000000
## 7110                               1 4.369448 1.3862944 1.3862944
## 7111                               1 4.499810 4.0775374 1.3862944
## 7112                               2 4.605170 4.5747110 1.0986123
## 7113                               9 4.595120 2.0794415 3.4011974
## 7114                               1 5.298317 3.4011974 1.0986123
## 7115                               1 5.247024 0.0000000 0.6931472
## 7116                               2 4.317488 4.8598124 0.6931472
## 7117                               1 4.248495 2.6390573 1.0986123
## 7118                               1 4.442651 0.0000000 1.3862944
## 7119                               1 3.912023 0.6931472 1.3862944
## 7120                               1 4.867534 3.5263605 0.6931472
## 7121                               1 5.010635 1.6094379 1.9459101
## 7122                               4 6.620073 2.7080502 0.0000000
## 7123                               1 4.127134 3.8066625 0.6931472
## 7124                               1 5.521461 3.2188758 3.4011974
## 7125                               1 5.857933 0.6931472 0.0000000
## 7126                               4 4.174387 4.0253517 3.4011974
## 7127                               9 4.553877 2.5649494 3.4011974
## 7128                               1 5.030438 4.3438054 1.3862944
## 7129                               1 5.010635 4.5538769 1.3862944
## 7130                               1 5.634790 3.8286414 1.0986123
## 7131                               1 4.248495 0.6931472 1.3862944
## 7132                               1 5.043425 3.0910425 1.6094379
## 7133                               3 4.262680 5.0875963 0.6931472
## 7134                               2 5.204007 3.9318256 1.3862944
## 7135                               1 4.653960 4.3174881 1.0986123
## 7136                               1 4.605170 1.0986123 2.6390573
## 7137                               2 4.691348 3.1354942 3.4011974
## 7138                               1 4.553877 1.0986123 2.6390573
## 7139                               4 4.174387 4.2046926 3.4011974
## 7140                               2 4.867534 0.0000000 0.0000000
## 7141                               1 4.787492 4.7535902 1.0986123
## 7142                               1 5.298317 0.6931472 1.9459101
## 7143                               1 5.247024 0.6931472 0.6931472
## 7144                               1 4.442651 5.0498560 0.0000000
## 7145                               1 4.828314 5.1059455 1.0986123
## 7146                               1 4.867534 4.5432948 0.0000000
## 7147                               1 4.248495 4.7957905 1.0986123
## 7148                               2 5.214936 0.0000000 2.3025851
## 7149                               1 5.192957 2.1972246 0.6931472
## 7150                               1 4.605170 5.2094862 0.0000000
## 7151                               2 4.828314 3.7135721 0.6931472
## 7152                               1 5.010635 0.6931472 0.6931472
## 7153                               1 4.653960 1.6094379 1.6094379
## 7154                               5 3.555348 5.0875963 0.0000000
## 7155                               5 3.401197 5.0937502 0.0000000
## 7156                               5 3.401197 5.1357984 0.0000000
## 7157                               1 4.828314 1.0986123 0.6931472
## 7158                               1 5.247024 0.0000000 0.6931472
## 7159                               1 4.553877 3.5835189 0.0000000
## 7160                               1 4.007333 1.3862944 1.0986123
## 7161                               1 4.867534 0.6931472 1.0986123
## 7162                               1 4.779123 3.8712010 1.3862944
## 7163                               3 4.204693 5.6937321 0.0000000
## 7164                               4 4.499810 1.3862944 1.6094379
## 7165                               1 5.293305 2.3025851 1.0986123
## 7166                               1 5.010635 3.8501476 1.9459101
## 7167                               1 4.744932 3.6888795 1.0986123
## 7168                               1 4.605170 0.6931472 0.0000000
## 7169                               4 5.105945 3.4011974 1.7917595
## 7170                               2 4.653960 4.3820266 0.6931472
## 7171                               4 3.891820 5.1357984 0.0000000
## 7172                               1 4.605170 0.0000000 0.6931472
## 7173                               1 4.543295 3.8286414 0.0000000
## 7174                               1 4.317488 1.0986123 1.7917595
## 7175                               1 5.774552 4.4886364 1.3862944
## 7176                               2 4.779123 4.8362819 1.0986123
## 7177                               1 4.605170 4.1431347 3.4011974
## 7178                               2 4.499810 0.6931472 0.6931472
## 7179                               1 5.010635 0.0000000 0.0000000
## 7180                               1 5.438079 0.0000000 0.0000000
## 7181                               2 4.077537 0.6931472 0.0000000
## 7182                               1 4.499810 4.5538769 1.0986123
## 7183                               1 4.553877 5.5093883 0.6931472
## 7184                               1 4.442651 1.3862944 2.3025851
## 7185                               2 5.010635 4.9344739 1.0986123
## 7186                               2 5.241747 2.1972246 1.6094379
## 7187                               2 4.595120 3.5553481 0.6931472
## 7188                               2 3.713572 5.0172798 0.6931472
## 7189                               1 4.499810 4.3174881 0.0000000
## 7190                               2 3.610918 4.8520303 0.6931472
## 7191                               1 5.940171 0.0000000 0.0000000
## 7192                               1 3.912023 1.6094379 1.0986123
## 7193                               1 5.416100 3.1780538 1.0986123
## 7194                               1 5.010635 0.6931472 2.6390573
## 7195                               1 4.007333 0.6931472 0.0000000
## 7196                               1 5.620401 3.8286414 1.3862944
## 7197                               3 5.293305 3.6635616 0.0000000
## 7198                               9 3.871201 1.3862944 3.4011974
## 7199                               1 4.976734 4.5951199 1.0986123
## 7200                               1 4.127134 2.4849066 1.3862944
## 7201                               1 5.438079 1.7917595 1.7917595
## 7202                               1 4.499810 4.8903491 2.3025851
## 7203                               1 4.418841 3.3672958 1.0986123
## 7204                               1 4.787492 1.9459101 0.0000000
## 7205                               4 4.174387 4.0430513 3.4011974
## 7206                               1 4.941642 0.6931472 1.0986123
## 7207                               1 4.382027 0.6931472 0.0000000
## 7208                               2 4.442651 5.2040067 0.6931472
## 7209                               1 4.787492 1.7917595 1.0986123
## 7210                               1 4.605170 1.6094379 2.3025851
## 7211                               1 4.174387 2.8332133 0.6931472
## 7212                               1 4.382027 0.6931472 0.0000000
## 7213                               1 5.700444 1.0986123 1.9459101
## 7214                               1 2.772589 1.0986123 1.0986123
## 7215                               1 5.501258 4.1271344 1.0986123
## 7216                               1 4.007333 0.0000000 1.6094379
## 7217                               1 3.806662 0.0000000 0.0000000
## 7218                               1 4.605170 0.6931472 4.0943446
## 7219                               8 4.094345 3.2580965 3.4011974
## 7220                               8 4.094345 3.1354942 3.4011974
## 7221                               1 4.941642 1.9459101 0.6931472
## 7222                               1 5.703782 0.0000000 0.6931472
## 7223                               1 5.517453 1.3862944 0.6931472
## 7224                               1 5.164786 0.0000000 3.4011974
## 7225                               1 4.007333 1.3862944 0.6931472
## 7226                               1 4.905275 0.6931472 1.0986123
## 7227                               1 4.094345 0.0000000 0.0000000
## 7228                              26 4.317488 0.0000000 3.4011974
## 7229                               3 4.859812 2.4849066 1.0986123
## 7230                               1 5.634790 5.0238805 1.0986123
## 7231                               2 4.882802 4.7874917 1.0986123
## 7232                               1 4.248495 0.0000000 0.0000000
## 7233                               3 3.951244 3.2580965 0.0000000
## 7234                               3 4.997212 2.0794415 0.0000000
## 7235                               1 4.744932 1.7917595 1.6094379
## 7236                               2 4.691348 0.6931472 1.6094379
## 7237                               1 4.094345 2.1972246 1.0986123
## 7238                               1 5.010635 4.6728288 1.0986123
## 7239                               1 5.332719 0.0000000 0.0000000
## 7240                               2 4.143135 0.6931472 0.0000000
## 7241                               1 5.220356 2.3025851 1.0986123
## 7242                               1 6.098074 0.0000000 1.6094379
## 7243                               1 4.828314 1.7917595 1.9459101
## 7244                               5 3.555348 5.1590553 0.0000000
## 7245                               1 5.298317 1.0986123 1.6094379
## 7246                               1 4.948760 1.3862944 1.9459101
## 7247                               1 4.787492 0.6931472 1.3862944
## 7248                               1 4.976734 4.9628446 1.0986123
## 7249                               5 4.787492 4.9416424 4.0943446
## 7250                               2 4.488636 4.8598124 1.3862944
## 7251                               1 4.499810 0.6931472 0.0000000
## 7252                               2 4.553877 4.3438054 0.6931472
## 7253                               2 5.686975 4.5432948 0.6931472
## 7254                               1 4.644391 4.0943446 1.0986123
## 7255                               1 5.010635 4.1431347 0.6931472
## 7256                               2 4.317488 4.8441871 0.0000000
## 7257                               1 5.267858 2.0794415 0.6931472
## 7258                               1 4.828314 4.4998097 1.0986123
## 7259                               2 4.430817 5.2470241 0.6931472
## 7260                               1 4.941642 0.6931472 0.6931472
## 7261                               3 3.912023 2.6390573 3.4011974
## 7262                               1 4.488636 2.1972246 1.0986123
## 7263                               1 4.007333 1.6094379 0.0000000
## 7264                               3 4.127134 3.9889840 0.0000000
## 7265                              11 3.688879 3.7612001 3.4011974
## 7266                               1 5.857933 0.0000000 1.0986123
## 7267                               1 5.247024 1.9459101 1.0986123
## 7268                               1 5.703782 0.0000000 0.0000000
## 7269                               1 5.686975 1.7917595 1.6094379
## 7270                               1 4.727388 0.6931472 0.0000000
## 7271                               1 4.553877 0.0000000 1.0986123
## 7272                               6 4.077537 4.2195077 1.0986123
## 7273                               2 4.234107 3.6888795 1.7917595
## 7274                               1 5.247024 0.0000000 0.6931472
## 7275                               1 4.174387 0.0000000 2.6390573
## 7276                               1 5.220356 4.2341065 0.0000000
## 7277                               1 5.023881 0.0000000 1.0986123
## 7278                               1 5.517453 1.0986123 1.0986123
## 7279                               1 4.553877 2.9957323 1.3862944
## 7280                               1 4.867534 1.0986123 0.6931472
## 7281                               1 4.976734 2.8903718 1.0986123
## 7282                               1 5.783825 4.1896547 0.0000000
## 7283                               1 4.317488 0.0000000 0.0000000
## 7284                               1 3.610918 0.0000000 0.0000000
## 7285                               1 4.317488 3.9512437 0.0000000
## 7286                               6 3.912023 4.6249728 1.0986123
## 7287                               8 4.595120 2.5649494 3.4011974
## 7288                               1 3.912023 2.3978953 1.3862944
## 7289                               1 5.010635 2.1972246 0.0000000
## 7290                               1 4.477337 3.8712010 0.6931472
## 7291                               1 5.247024 2.0794415 1.3862944
## 7292                               1 4.828314 0.0000000 0.0000000
## 7293                               2 5.648974 2.3978953 1.3862944
## 7294                               1 5.010635 0.0000000 0.0000000
## 7295                               3 2.772589 3.7612001 0.6931472
## 7296                               2 4.094345 4.2484952 0.6931472
## 7297                               1 4.595120 3.8918203 1.3862944
## 7298                               1 4.605170 4.1431347 1.0986123
## 7299                               1 3.555348 1.3862944 0.0000000
## 7300                               1 5.117994 0.6931472 1.9459101
## 7301                               5 4.941642 5.0689042 0.0000000
## 7302                               1 5.164786 1.3862944 1.0986123
## 7303                               1 5.517453 1.7917595 0.0000000
## 7304                               8 4.859812 4.7535902 0.0000000
## 7305                               2 4.553877 4.5217886 0.0000000
## 7306                               1 5.634790 0.0000000 0.0000000
## 7307                               1 5.298317 1.0986123 1.9459101
## 7308                               2 5.620401 2.9444390 1.0986123
## 7309                               1 4.867534 3.2580965 1.0986123
## 7310                               1 3.688879 0.6931472 1.0986123
## 7311                               1 4.158883 1.3862944 1.0986123
## 7312                               1 5.988961 3.3322045 0.0000000
## 7313                               1 6.204558 2.0794415 1.6094379
## 7314                               1 4.976734 0.6931472 0.6931472
## 7315                               2 3.970292 4.0253517 0.6931472
## 7316                               1 4.605170 4.2766661 0.0000000
## 7317                               1 3.737670 1.6094379 1.0986123
## 7318                               9 5.298317 1.0986123 3.4011974
## 7319                               1 4.867534 4.5747110 1.0986123
## 7320                               1 5.298317 2.0794415 3.4011974
## 7321                               1 4.317488 0.0000000 0.0000000
## 7322                               2 3.806662 2.1972246 2.6390573
## 7323                               2 3.951244 4.7004804 0.6931472
## 7324                               1 4.605170 0.0000000 0.0000000
## 7325                               1 5.857933 2.7080502 1.0986123
## 7326                               1 4.248495 4.4773368 0.0000000
## 7327                               1 3.663562 1.3862944 1.3862944
## 7328                               1 5.476464 1.7917595 0.6931472
## 7329                               2 5.926926 2.7080502 0.6931472
## 7330                               1 4.828314 0.0000000 0.0000000
## 7331                               1 3.806662 1.0986123 1.0986123
## 7332                               1 4.094345 0.0000000 1.9459101
## 7333                               1 4.317488 1.6094379 0.0000000
## 7334                               3 4.248495 3.7376696 1.6094379
## 7335                               1 4.174387 4.6728288 1.3862944
## 7336                               1 4.595120 3.3322045 0.6931472
## 7337                               1 4.553877 1.0986123 0.0000000
## 7338                               1 5.616771 3.5553481 0.0000000
## 7339                               2 5.123964 4.8903491 1.0986123
## 7340                               1 3.806662 1.0986123 3.4339872
## 7341                               2 4.382027 4.5325995 0.0000000
## 7342                               1 4.744932 1.3862944 0.0000000
## 7343                               1 4.174387 1.7917595 0.6931472
## 7344                               1 5.303305 5.1647860 0.6931472
## 7345                               1 4.787492 1.0986123 0.0000000
## 7346                               1 3.912023 0.0000000 0.0000000
## 7347                               1 4.605170 1.3862944 1.3862944
## 7348                               1 4.605170 0.6931472 2.6390573
## 7349                               1 4.077537 2.1972246 1.9459101
## 7350                               2 3.784190 3.2958369 1.6094379
## 7351                               3 4.369448 1.0986123 1.6094379
## 7352                               1 4.025352 0.6931472 1.0986123
## 7353                               1 4.941642 2.0794415 1.6094379
## 7354                               1 5.075174 1.6094379 0.0000000
## 7355                               1 4.779123 4.5108595 1.3862944
## 7356                               1 5.220356 3.2580965 1.0986123
## 7357                               1 4.060443 4.9972123 0.0000000
## 7358                               1 4.442651 1.3862944 1.3862944
## 7359                               1 4.605170 0.0000000 0.0000000
## 7360                               1 4.700480 1.6094379 0.0000000
## 7361                               1 4.382027 0.0000000 1.6094379
## 7362                              13 4.744932 1.7917595 0.0000000
## 7363                               1 4.595120 4.0604430 1.3862944
## 7364                               3 4.653960 5.3181200 0.6931472
## 7365                               1 4.700480 1.0986123 0.6931472
## 7366                               2 4.248495 5.9839363 0.0000000
## 7367                               1 5.075174 1.9459101 0.0000000
## 7368                               1 5.010635 2.3025851 3.4011974
## 7369                               1 4.499810 0.0000000 1.3862944
## 7370                               1 4.454347 2.3025851 3.4011974
## 7371                               1 5.298317 0.6931472 0.0000000
## 7372                               1 5.605802 3.6375862 0.0000000
## 7373                               1 4.454347 1.6094379 0.0000000
## 7374                               1 4.859812 5.6698809 0.6931472
## 7375                              10 3.912023 4.6347290 0.0000000
## 7376                               1 4.553877 0.0000000 1.3862944
## 7377                               1 5.991465 1.6094379 1.7917595
## 7378                               1 5.075174 4.1588831 0.6931472
## 7379                               1 4.499810 0.0000000 1.0986123
## 7380                               1 4.976734 2.8332133 1.7917595
## 7381                               1 4.828314 3.7841896 0.6931472
## 7382                               1 4.605170 4.6051702 1.0986123
## 7383                               1 4.317488 2.0794415 0.0000000
## 7384                               1 4.317488 0.6931472 1.3862944
## 7385                               1 4.828314 0.6931472 2.6390573
## 7386                               4 4.442651 5.3375381 0.0000000
## 7387                               2 6.107023 1.7917595 1.3862944
## 7388                               1 5.010635 0.0000000 0.6931472
## 7389                               1 5.521461 5.1704840 0.6931472
## 7390                               1 4.787492 4.0253517 0.6931472
## 7391                               1 4.744932 5.5053315 0.6931472
## 7392                               1 4.488636 1.0986123 1.3862944
## 7393                               1 5.192957 0.6931472 1.0986123
## 7394                               1 4.248495 0.6931472 1.3862944
## 7395                               2 4.941642 3.9120230 0.6931472
## 7396                               5 3.610918 4.2766661 1.6094379
## 7397                               1 4.248495 1.3862944 0.0000000
## 7398                               5 4.477337 1.9459101 1.3862944
## 7399                               5 5.768321 4.0253517 1.3862944
## 7400                               1 4.007333 0.0000000 0.0000000
## 7401                               1 5.273000 1.6094379 1.0986123
## 7402                               2 5.043425 4.7535902 1.0986123
## 7403                               1 5.135798 0.0000000 1.0986123
## 7404                               1 4.828314 3.0445224 0.6931472
## 7405                               2 4.700480 5.1873858 0.0000000
## 7406                               1 5.978886 2.1972246 1.3862944
## 7407                               1 5.370638 2.6390573 1.0986123
## 7408                               1 5.010635 2.8332133 0.6931472
## 7409                               1 5.686975 3.0910425 1.0986123
## 7410                               1 4.094345 1.7917595 1.3862944
## 7411                               1 4.007333 4.9052748 0.0000000
## 7412                               2 4.442651 1.0986123 0.0000000
## 7413                               2 4.499810 4.7449321 0.6931472
## 7414                               2 3.891820 4.3567088 0.6931472
## 7415                               1 3.912023 2.3025851 0.0000000
## 7416                               1 4.442651 3.9512437 1.9459101
## 7417                               1 5.857933 0.0000000 1.3862944
## 7418                               1 3.637586 0.6931472 3.4011974
## 7419                               2 5.062595 1.3862944 0.6931472
## 7420                               1 5.501258 3.2958369 1.3862944
## 7421                               2 4.700480 4.9199809 1.0986123
## 7422                               1 3.912023 3.6109179 0.0000000
## 7423                               8 3.806662 1.3862944 1.7917595
## 7424                               1 4.442651 4.3694479 0.6931472
## 7425                               1 5.010635 3.1780538 0.0000000
## 7426                               1 5.509388 3.2188758 1.6094379
## 7427                               1 4.653960 1.6094379 0.6931472
## 7428                               1 5.991465 2.0794415 0.6931472
## 7429                               1 5.043425 1.3862944 1.7917595
## 7430                              14 5.010635 1.6094379 3.4011974
## 7431                               2 4.234107 2.6390573 0.0000000
## 7432                               1 5.293305 4.2626799 0.6931472
## 7433                               1 6.212606 1.0986123 1.6094379
## 7434                               1 5.010635 5.0106353 0.6931472
## 7435                               1 4.653960 3.4965076 1.6094379
## 7436                               8 3.806662 3.2188758 1.7917595
## 7437                               1 4.653960 1.0986123 1.9459101
## 7438                               1 4.867534 2.6390573 1.0986123
## 7439                               1 4.317488 1.3862944 0.6931472
## 7440                               1 5.010635 2.7080502 1.6094379
## 7441                              52 5.068904 1.0986123 3.4011974
## 7442                               1 4.605170 2.7080502 1.9459101
## 7443                               1 4.976734 4.0775374 1.3862944
## 7444                               1 5.393628 2.5649494 0.6931472
## 7445                               1 5.075174 2.1972246 1.3862944
## 7446                               1 5.164786 5.0106353 0.0000000
## 7447                               1 4.406719 2.3978953 1.0986123
## 7448                               2 5.298317 4.5538769 1.6094379
## 7449                               2 4.442651 5.2364420 0.6931472
## 7450                               1 4.905275 2.3978953 1.0986123
## 7451                               1 5.010635 0.6931472 1.0986123
## 7452                               2 4.174387 3.8918203 0.6931472
## 7453                               1 5.978886 2.7725887 1.6094379
## 7454                               1 5.937536 3.8066625 1.9459101
## 7455                               1 5.521461 1.6094379 0.6931472
## 7456                               3 4.499810 2.3978953 0.6931472
## 7457                               1 3.688879 3.0910425 2.3025851
## 7458                               1 5.298317 0.0000000 0.6931472
## 7459                               3 4.890349 3.8918203 0.6931472
## 7460                               1 4.941642 0.6931472 0.0000000
## 7461                              15 4.605170 2.4849066 3.4011974
## 7462                               1 4.442651 0.6931472 0.6931472
## 7463                               1 4.941642 2.6390573 1.0986123
## 7464                               1 4.787492 0.0000000 0.0000000
## 7465                               1 4.700480 1.0986123 1.3862944
## 7466                               1 4.744932 4.2626799 1.0986123
## 7467                               1 4.787492 3.2580965 0.0000000
## 7468                               1 5.703782 4.2046926 0.0000000
## 7469                               1 4.077537 1.6094379 0.0000000
## 7470                               2 4.941642 0.6931472 1.0986123
## 7471                               1 4.595120 4.6051702 0.0000000
## 7472                               1 3.951244 1.3862944 0.0000000
## 7473                               1 4.828314 1.3862944 0.0000000
## 7474                               3 4.174387 3.6109179 1.3862944
## 7475                               1 3.970292 0.6931472 1.0986123
## 7476                               1 5.828946 2.9444390 0.6931472
## 7477                               1 4.382027 0.6931472 1.9459101
## 7478                               1 4.382027 4.8751973 1.0986123
## 7479                               1 4.356709 0.0000000 0.6931472
## 7480                               1 5.003946 3.5553481 3.4011974
## 7481                               1 4.382027 4.8202816 0.6931472
## 7482                               1 4.744932 0.0000000 1.6094379
## 7483                               1 4.499810 5.2203558 0.0000000
## 7484                               1 5.164786 2.3025851 1.0986123
## 7485                               1 5.267858 3.5835189 0.6931472
## 7486                               1 5.164786 1.6094379 1.3862944
## 7487                               1 4.143135 1.7917595 0.0000000
## 7488                               1 5.010635 1.3862944 1.9459101
## 7489                               3 4.158883 3.4657359 0.6931472
## 7490                               1 5.220356 3.9512437 0.6931472
## 7491                               3 4.382027 4.8362819 0.6931472
## 7492                               1 4.317488 2.7080502 0.6931472
## 7493                               1 4.653960 4.2341065 1.0986123
## 7494                               2 4.867534 4.9199809 0.0000000
## 7495                               1 5.575949 1.6094379 0.6931472
## 7496                               1 5.370638 1.6094379 1.0986123
## 7497                               3 4.442651 0.6931472 2.9957323
## 7498                               8 3.912023 2.3978953 1.7917595
## 7499                               1 4.976734 0.6931472 1.9459101
## 7500                               1 5.010635 0.6931472 1.0986123
## 7501                               1 5.164786 2.3025851 0.6931472
## 7502                               1 6.802395 2.5649494 1.0986123
## 7503                               1 4.094345 4.4659081 1.3862944
## 7504                               4 4.248495 3.9889840 3.4011974
## 7505                               2 5.480639 4.4067192 1.6094379
## 7506                               1 5.010635 2.7725887 1.0986123
## 7507                               1 5.164786 1.3862944 0.0000000
## 7508                              11 6.907755 3.2958369 3.4011974
## 7509                               1 3.737670 0.0000000 2.0794415
## 7510                               1 4.382027 2.8903718 0.6931472
## 7511                               1 5.010635 2.7080502 1.6094379
## 7512                               1 5.273000 0.6931472 1.9459101
## 7513                               2 4.976734 4.8675345 1.0986123
## 7514                               3 4.317488 3.9512437 0.6931472
## 7515                               2 4.499810 4.4426513 0.6931472
## 7516                               1 3.970292 2.3978953 0.6931472
## 7517                               1 5.043425 3.5835189 0.6931472
## 7518                               2 3.891820 2.5649494 1.0986123
## 7519                               6 4.356709 4.6821312 1.0986123
## 7520                               3 5.293305 0.6931472 0.0000000
## 7521                               1 5.857933 3.5263605 0.6931472
## 7522                               1 4.787492 1.0986123 0.0000000
## 7523                               1 4.248495 4.7361984 0.6931472
## 7524                               1 5.192957 4.1271344 0.6931472
## 7525                               1 4.976734 0.0000000 1.9459101
## 7526                               5 5.003946 4.0253517 0.0000000
## 7527                               1 4.094345 1.6094379 1.3862944
## 7528                               1 4.941642 4.7791235 1.3862944
## 7529                               1 5.164786 1.6094379 1.0986123
## 7530                               1 4.700480 0.6931472 1.0986123
## 7531                               3 5.176150 4.8040210 1.0986123
## 7532                               1 5.616771 2.4849066 3.4011974
## 7533                               2 4.595120 3.8918203 0.0000000
## 7534                               1 4.653960 4.7095302 0.6931472
## 7535                               2 5.298317 0.0000000 1.3862944
## 7536                               1 4.060443 3.2958369 1.0986123
## 7537                               1 4.605170 1.0986123 2.1972246
## 7538                               1 4.700480 3.8712010 0.0000000
## 7539                               1 4.382027 1.0986123 1.0986123
## 7540                               1 5.105945 1.6094379 0.6931472
## 7541                               1 4.382027 2.4849066 0.6931472
## 7542                               1 4.976734 4.8903491 1.0986123
## 7543                               1 3.806662 0.6931472 0.0000000
## 7544                               5 3.401197 4.6728288 0.0000000
## 7545                               2 4.394449 2.9957323 1.3862944
## 7546                               1 3.891820 1.6094379 1.3862944
## 7547                               1 5.416100 3.9512437 1.0986123
## 7548                               3 4.248495 4.8751973 0.6931472
## 7549                               1 4.787492 2.9957323 1.9459101
## 7550                               2 5.164786 4.2484952 0.0000000
## 7551                               2 4.867534 0.6931472 1.3862944
## 7552                               1 5.010635 2.3978953 1.3862944
## 7553                               3 4.553877 5.0814044 1.6094379
## 7554                               3 5.703782 2.8903718 1.0986123
## 7555                               1 5.192957 4.9767337 0.0000000
## 7556                               3 5.926926 3.8286414 1.0986123
## 7557                               1 4.317488 3.9702919 1.6094379
## 7558                               1 5.703782 1.6094379 0.6931472
## 7559                               1 4.094345 2.3978953 1.9459101
## 7560                               2 4.094345 2.8903718 1.0986123
## 7561                               2 5.062595 1.0986123 0.6931472
## 7562                               1 5.214936 2.3978953 1.3862944
## 7563                               1 5.438079 0.0000000 0.6931472
## 7564                               6 4.553877 3.1780538 1.0986123
## 7565                               2 4.700480 4.0604430 1.0986123
## 7566                               1 4.787492 1.9459101 2.3025851
## 7567                               2 5.241747 4.5217886 0.6931472
## 7568                               1 4.584967 1.9459101 2.3025851
## 7569                               1 5.010635 2.4849066 1.0986123
## 7570                               1 4.605170 0.0000000 0.0000000
## 7571                               1 4.442651 2.3978953 0.0000000
## 7572                               1 6.109248 0.0000000 1.0986123
## 7573                               1 5.521461 0.0000000 1.0986123
## 7574                               1 4.605170 0.0000000 0.6931472
## 7575                               1 3.688879 3.5835189 0.6931472
## 7576                               1 4.499810 3.4965076 1.7917595
## 7577                               2 5.010635 0.6931472 1.3862944
## 7578                               1 4.382027 1.9459101 0.0000000
## 7579                               1 4.488636 4.8903491 0.6931472
## 7580                               1 4.499810 2.7080502 0.6931472
## 7581                               1 4.510860 2.7725887 0.6931472
## 7582                               2 4.442651 0.6931472 0.0000000
## 7583                               2 5.521461 4.2195077 1.0986123
## 7584                               1 3.912023 1.3862944 0.0000000
## 7585                               1 4.094345 1.9459101 2.1972246
## 7586                               1 5.010635 2.4849066 1.6094379
## 7587                               1 5.416100 2.3978953 1.0986123
## 7588                               1 5.669881 2.5649494 1.3862944
## 7589                               1 4.553877 0.0000000 1.0986123
## 7590                               1 4.934474 1.0986123 1.3862944
## 7591                               1 5.686975 1.3862944 1.6094379
## 7592                               1 4.941642 5.3981627 0.0000000
## 7593                               1 5.988961 3.6375862 1.0986123
## 7594                               2 4.605170 2.3978953 1.9459101
## 7595                               1 4.382027 0.0000000 2.3025851
## 7596                               1 4.905275 2.0794415 1.6094379
## 7597                               1 5.164786 0.6931472 1.0986123
## 7598                               5 4.248495 3.4657359 0.6931472
## 7599                               1 3.912023 0.0000000 0.0000000
## 7600                               8 3.951244 3.1780538 2.8903718
## 7601                               2 4.941642 4.1588831 1.0986123
## 7602                               1 5.129899 2.3978953 1.3862944
## 7603                               1 5.153292 0.0000000 1.0986123
## 7604                               1 5.129899 3.8918203 0.6931472
## 7605                               1 5.010635 1.7917595 1.6094379
## 7606                               1 4.976734 3.2188758 1.6094379
## 7607                               3 4.248495 3.4965076 0.0000000
## 7608                               1 5.323010 0.0000000 1.0986123
## 7609                               1 4.976734 2.8903718 1.6094379
## 7610                               1 4.477337 2.4849066 0.6931472
## 7611                               1 5.298317 1.3862944 5.8998974
## 7612                               1 5.105945 2.5649494 0.6931472
## 7613                               4 4.442651 3.9512437 0.0000000
## 7614                               1 5.480639 1.3862944 1.6094379
## 7615                               1 4.553877 1.3862944 1.6094379
## 7616                               5 4.248495 2.9957323 0.0000000
## 7617                               1 4.595120 1.0986123 0.0000000
## 7618                               2 5.176150 4.3567088 1.0986123
## 7619                               1 5.703782 1.9459101 0.0000000
## 7620                               3 3.688879 4.1271344 0.0000000
## 7621                               1 5.634790 3.3672958 0.6931472
## 7622                               4 4.077537 2.4849066 2.1972246
## 7623                               1 4.605170 0.0000000 1.0986123
## 7624                               1 5.010635 0.0000000 1.3862944
## 7625                               1 4.941642 3.9512437 0.0000000
## 7626                               1 5.991465 1.3862944 0.0000000
## 7627                               2 4.317488 4.0775374 0.0000000
## 7628                               2 5.164786 3.5263605 1.3862944
## 7629                               1 4.442651 2.9444390 0.0000000
## 7630                               1 5.010635 1.9459101 3.5553481
## 7631                               4 5.283204 0.0000000 3.4011974
## 7632                               1 5.010635 0.0000000 1.0986123
## 7633                               1 5.298317 1.3862944 0.0000000
## 7634                               1 4.867534 2.3978953 1.0986123
## 7635                               5 3.912023 2.1972246 0.0000000
## 7636                               2 5.164786 1.6094379 0.0000000
## 7637                               2 4.605170 0.0000000 0.0000000
## 7638                               1 5.010635 4.2484952 1.3862944
## 7639                               1 4.976734 0.6931472 3.4011974
## 7640                               1 4.867534 0.6931472 1.9459101
## 7641                               3 3.806662 5.2257467 0.6931472
## 7642                               1 6.396930 3.3322045 1.3862944
## 7643                               1 4.828314 2.9957323 1.0986123
## 7644                               1 4.867534 2.5649494 0.0000000
## 7645                               1 3.784190 2.6390573 3.3322045
## 7646                               1 5.293305 0.0000000 0.0000000
## 7647                               1 3.891820 0.0000000 1.9459101
## 7648                               1 3.806662 0.0000000 0.6931472
## 7649                               3 5.579730 4.4998097 0.6931472
## 7650                               1 5.393628 0.0000000 3.4011974
## 7651                               1 3.951244 3.9702919 0.6931472
## 7652                               1 5.192957 1.7917595 0.6931472
## 7653                               1 4.844187 3.4011974 0.6931472
## 7654                               1 4.682131 2.8332133 0.6931472
## 7655                               1 5.010635 0.0000000 1.9459101
## 7656                               1 6.086775 3.1354942 1.3862944
## 7657                               1 4.605170 0.6931472 0.0000000
## 7658                               1 5.298317 1.3862944 1.0986123
## 7659                               1 5.192957 0.6931472 1.0986123
## 7660                               1 5.521461 2.6390573 1.6094379
## 7661                               1 5.010635 1.6094379 1.6094379
## 7662                               1 3.891820 2.7080502 1.7917595
## 7663                               1 7.309881 2.3978953 0.0000000
## 7664                               1 4.700480 0.0000000 0.0000000
## 7665                               1 3.806662 0.0000000 2.3025851
## 7666                               2 5.988961 2.7080502 1.3862944
## 7667                               3 4.634729 0.0000000 0.6931472
## 7668                               1 3.496508 3.6888795 1.9459101
## 7669                               1 4.454347 1.0986123 1.0986123
## 7670                               1 4.700480 1.6094379 1.6094379
## 7671                               2 5.075174 1.0986123 0.6931472
## 7672                               1 4.007333 0.0000000 0.0000000
## 7673                               3 4.382027 5.2203558 0.6931472
## 7674                               1 4.442651 0.6931472 0.0000000
## 7675                               1 5.616771 3.0445224 1.0986123
## 7676                               1 6.109248 0.6931472 0.6931472
## 7677                               1 4.787492 0.0000000 0.6931472
## 7678                               1 5.521461 0.0000000 0.6931472
## 7679                               1 4.442651 1.0986123 0.0000000
## 7680                               1 4.605170 0.6931472 1.9459101
## 7681                               1 4.174387 4.6728288 0.0000000
## 7682                               2 4.219508 5.4026774 0.0000000
## 7683                               1 5.135798 2.3978953 2.3025851
## 7684                               1 3.912023 2.1972246 0.6931472
## 7685                               1 3.806662 0.0000000 3.4011974
## 7686                              43 3.871201 0.6931472 3.4011974
## 7687                              43 3.761200 0.0000000 3.4011974
## 7688                               1 5.560682 0.6931472 0.6931472
## 7689                               2 5.068904 2.0794415 1.0986123
## 7690                               1 3.912023 1.0986123 1.9459101
## 7691                               1 4.094345 1.6094379 1.6094379
## 7692                               2 4.382027 1.3862944 0.6931472
## 7693                               2 4.744932 2.5649494 1.3862944
## 7694                               1 5.298317 1.3862944 0.0000000
## 7695                               3 5.075174 3.3672958 1.0986123
## 7696                               1 4.691348 0.0000000 1.0986123
## 7697                               1 3.218876 1.6094379 0.6931472
## 7698                               2 5.634790 1.6094379 1.6094379
## 7699                               1 4.584967 2.0794415 1.0986123
## 7700                               2 4.248495 4.5951199 0.6931472
## 7701                               3 4.007333 2.6390573 2.3025851
## 7702                               1 4.605170 2.8332133 1.0986123
## 7703                               1 5.298317 0.0000000 1.6094379
## 7704                               1 4.787492 2.3978953 0.0000000
## 7705                               1 5.010635 0.0000000 2.6390573
## 7706                               1 5.043425 4.1431347 1.0986123
## 7707                               2 4.094345 1.7917595 1.9459101
## 7708                               1 5.298317 0.0000000 0.0000000
## 7709                               1 5.298317 3.8501476 1.0986123
## 7710                               3 3.218876 3.2188758 0.0000000
## 7711                               1 5.293305 2.6390573 0.6931472
## 7712                               2 3.891820 4.6051702 0.6931472
## 7713                               2 4.653960 3.4965076 2.7080502
## 7714                               3 3.891820 4.6728288 0.0000000
## 7715                               1 5.545177 2.3978953 1.3862944
## 7716                               1 6.212606 3.5553481 1.0986123
## 7717                               1 4.499810 3.4657359 1.3862944
## 7718                               1 4.382027 5.0238805 1.3862944
## 7719                               1 5.192957 3.5553481 1.0986123
## 7720                               1 4.976734 0.6931472 1.7917595
## 7721                               2 4.605170 0.0000000 0.0000000
## 7722                               2 5.010635 5.3375381 1.0986123
## 7723                               1 4.007333 1.3862944 1.6094379
## 7724                               1 4.990433 4.0073332 1.0986123
## 7725                               1 5.393628 4.6821312 1.0986123
## 7726                               2 6.788972 3.7376696 0.6931472
## 7727                               1 3.688879 0.0000000 0.0000000
## 7728                               1 4.248495 1.9459101 0.0000000
## 7729                               1 5.010635 0.0000000 0.0000000
## 7730                               1 4.317488 0.0000000 1.9459101
## 7731                               1 4.442651 0.6931472 1.6094379
## 7732                               1 4.820282 1.7917595 1.0986123
## 7733                               1 4.488636 3.2188758 0.6931472
## 7734                               1 5.273000 0.0000000 1.0986123
## 7735                               1 5.075174 3.2958369 1.0986123
## 7736                               1 4.094345 1.6094379 0.0000000
## 7737                               1 4.828314 5.1984970 1.0986123
## 7738                               1 5.416100 1.7917595 0.6931472
## 7739                               1 4.454347 3.3322045 1.3862944
## 7740                               1 4.779123 1.7917595 1.3862944
## 7741                               1 4.248495 2.1972246 2.7080502
## 7742                               1 4.317488 2.3025851 0.0000000
## 7743                               1 5.010635 1.0986123 1.0986123
## 7744                               1 4.976734 0.0000000 3.2188758
## 7745                               1 4.867534 1.9459101 1.6094379
## 7746                               8 3.970292 3.1780538 3.0445224
## 7747                               3 4.867534 2.7725887 1.3862944
## 7748                               3 3.871201 3.9702919 0.6931472
## 7749                               3 4.653960 1.9459101 1.0986123
## 7750                               3 4.174387 4.4426513 0.6931472
## 7751                               1 4.605170 0.0000000 1.3862944
## 7752                               3 3.663562 5.5683445 0.6931472
## 7753                               1 5.010635 0.6931472 1.6094379
## 7754                               3 3.912023 3.3322045 0.6931472
## 7755                               1 4.007333 1.3862944 1.9459101
## 7756                               1 5.273000 0.0000000 0.0000000
## 7757                               1 5.686975 1.7917595 3.4011974
## 7758                               8 3.912023 3.7376696 4.5108595
## 7759                               1 4.700480 2.4849066 1.3862944
## 7760                               2 4.158883 3.8712010 0.6931472
## 7761                               1 4.317488 2.3025851 0.6931472
## 7762                               1 4.867534 1.7917595 0.0000000
## 7763                               2 3.912023 2.7725887 0.6931472
## 7764                               1 5.598422 1.3862944 1.3862944
## 7765                               1 4.356709 0.6931472 3.4011974
## 7766                               2 4.605170 5.0562458 0.6931472
## 7767                              11 5.043425 5.1704840 0.0000000
## 7768                              11 5.347108 5.2040067 0.0000000
## 7769                               2 4.077537 0.0000000 0.0000000
## 7770                               1 4.941642 2.0794415 0.6931472
## 7771                               1 4.488636 1.3862944 1.6094379
## 7772                               1 3.912023 0.0000000 0.0000000
## 7773                              11 5.043425 5.1873858 0.0000000
## 7774                               4 4.317488 4.8978398 0.0000000
## 7775                               1 4.584967 5.4722707 0.0000000
## 7776                               1 4.624973 2.0794415 2.3025851
## 7777                               1 4.442651 2.9957323 0.6931472
## 7778                               2 3.555348 0.0000000 2.3025851
## 7779                              11 5.541264 5.2574954 0.0000000
## 7780                              11 5.501258 5.0875963 0.0000000
## 7781                              11 5.043425 5.3033049 0.0000000
## 7782                              11 5.043425 5.2983174 0.0000000
## 7783                               2 4.997212 2.4849066 0.0000000
## 7784                              11 5.043425 5.3132060 0.0000000
## 7785                              11 5.105945 5.0304379 0.0000000
## 7786                              11 5.043425 5.2417470 0.0000000
## 7787                               3 5.963579 2.8903718 1.0986123
## 7788                               4 4.174387 4.6539604 0.6931472
## 7789                               3 4.488636 1.7917595 2.0794415
## 7790                               1 5.521461 1.0986123 1.6094379
## 7791                               2 4.394449 2.0794415 0.6931472
## 7792                               2 5.298317 1.0986123 1.6094379
## 7793                               1 4.867534 0.0000000 1.9459101
## 7794                               1 4.605170 1.3862944 1.7917595
## 7795                               8 4.110874 4.0775374 0.6931472
## 7796                               1 4.553877 1.3862944 1.6094379
## 7797                               6 4.174387 4.5217886 0.6931472
## 7798                               1 3.688879 1.3862944 1.6094379
## 7799                               2 4.787492 0.0000000 1.7917595
## 7800                               8 4.077537 3.5835189 0.6931472
## 7801                               3 4.905275 5.4337220 0.0000000
## 7802                               3 6.131226 2.3978953 1.3862944
## 7803                               1 4.700480 2.7080502 1.3862944
## 7804                               1 5.416100 3.1780538 0.6931472
## 7805                               1 4.905275 2.0794415 1.6094379
## 7806                               1 4.828314 0.0000000 0.0000000
## 7807                               1 4.158883 3.4657359 1.6094379
## 7808                               8 4.060443 3.4339872 1.7917595
## 7809                               1 4.234107 0.0000000 0.0000000
## 7810                               2 5.176150 4.9698133 1.0986123
## 7811                               2 4.234107 0.0000000 2.6390573
## 7812                               1 5.616771 0.0000000 1.3862944
## 7813                               1 4.595120 2.8332133 0.0000000
## 7814                               1 4.905275 1.3862944 1.0986123
## 7815                               1 5.010635 1.6094379 1.3862944
## 7816                               1 7.600902 2.8903718 0.0000000
## 7817                               1 4.499810 3.1354942 0.6931472
## 7818                               2 4.077537 0.6931472 1.6094379
## 7819                               1 5.370638 0.0000000 2.6390573
## 7820                               1 4.248495 5.0106353 0.6931472
## 7821                               1 4.905275 1.7917595 0.0000000
## 7822                               1 5.298317 1.7917595 1.0986123
## 7823                               1 4.787492 1.7917595 0.0000000
## 7824                               1 4.442651 4.5325995 1.0986123
## 7825                               1 3.951244 1.7917595 2.9957323
## 7826                               1 4.976734 0.0000000 1.0986123
## 7827                               1 5.501258 2.8903718 1.0986123
## 7828                               1 4.787492 0.6931472 1.0986123
## 7829                               1 5.010635 4.6634391 0.6931472
## 7830                               1 5.521461 0.6931472 0.6931472
## 7831                               3 4.828314 4.9972123 1.3862944
## 7832                               1 3.688879 0.6931472 1.9459101
## 7833                               1 4.007333 0.6931472 0.0000000
## 7834                               1 4.867534 0.0000000 2.6390573
## 7835                               5 4.700480 4.2195077 0.6931472
## 7836                               1 5.220356 2.6390573 0.6931472
## 7837                               2 5.501258 2.0794415 1.0986123
## 7838                               1 6.551080 1.6094379 0.6931472
## 7839                               1 5.370638 0.6931472 0.6931472
## 7840                               4 5.521461 2.7725887 3.3672958
## 7841                               1 5.010635 0.6931472 0.6931472
## 7842                               1 4.488636 4.2195077 1.0986123
## 7843                               1 5.497168 3.0910425 0.6931472
## 7844                               1 4.304065 2.1972246 1.0986123
## 7845                               1 4.477337 2.0794415 0.0000000
## 7846                               7 5.010635 2.8332133 3.4011974
## 7847                               3 5.010635 4.5325995 1.3862944
## 7848                               2 3.688879 3.2958369 0.6931472
## 7849                               2 4.007333 0.0000000 2.7080502
## 7850                               1 5.556828 2.9957323 1.0986123
## 7851                               3 4.605170 2.8903718 0.0000000
## 7852                               1 4.828314 0.0000000 0.0000000
## 7853                               2 4.442651 0.6931472 0.6931472
## 7854                               1 4.317488 0.0000000 0.6931472
## 7855                               1 5.288267 2.8332133 0.6931472
## 7856                               1 5.703782 2.5649494 0.6931472
## 7857                               1 5.686975 2.8332133 0.0000000
## 7858                               1 3.555348 0.0000000 0.0000000
## 7859                               5 4.382027 2.0794415 1.0986123
## 7860                               1 4.700480 0.0000000 0.0000000
## 7861                               1 3.688879 3.4657359 0.6931472
## 7862                               1 4.317488 0.6931472 0.6931472
## 7863                               1 5.293305 2.5649494 1.0986123
## 7864                               1 3.912023 0.0000000 0.0000000
## 7865                               2 4.691348 5.4116461 0.6931472
## 7866                               1 4.787492 2.7080502 0.6931472
## 7867                               1 3.912023 1.0986123 3.2958369
## 7868                               1 4.553877 1.3862944 1.6094379
## 7869                               1 4.605170 3.9318256 1.0986123
## 7870                               1 5.857933 1.7917595 1.0986123
## 7871                               1 4.488636 1.6094379 1.9459101
## 7872                               3 4.382027 3.6635616 0.0000000
## 7873                               1 4.828314 5.5683445 0.0000000
## 7874                               3 5.043425 4.7361984 0.6931472
## 7875                               1 4.127134 0.0000000 0.0000000
## 7876                               1 4.532599 1.6094379 2.4849066
## 7877                               3 4.382027 3.9318256 0.6931472
## 7878                               1 4.787492 2.9444390 1.6094379
## 7879                               1 6.109248 0.0000000 1.9459101
## 7880                              39 5.043425 1.7917595 3.4011974
## 7881                               2 3.970292 5.2417470 0.0000000
## 7882                               1 5.010635 2.5649494 1.0986123
## 7883                               1 3.806662 0.0000000 0.0000000
## 7884                               1 4.442651 0.0000000 0.0000000
## 7885                               2 4.077537 0.0000000 0.0000000
## 7886                               2 4.804021 4.6151205 1.0986123
## 7887                               1 4.382027 0.6931472 1.3862944
## 7888                               1 4.653960 2.1972246 0.0000000
## 7889                              43 3.850148 1.0986123 3.4011974
## 7890                               1 4.317488 0.6931472 1.0986123
## 7891                              43 3.850148 1.0986123 3.4011974
## 7892                               1 4.605170 0.0000000 0.0000000
## 7893                               2 4.442651 0.0000000 0.0000000
## 7894                               3 5.594711 3.4339872 1.9459101
## 7895                               1 4.248495 0.0000000 0.0000000
## 7896                               1 4.499810 2.8903718 1.6094379
## 7897                               1 5.147494 2.0794415 1.0986123
## 7898                               1 5.075174 0.0000000 0.0000000
## 7899                               1 5.288267 1.0986123 0.6931472
## 7900                               1 5.036953 3.6109179 0.6931472
## 7901                               2 5.438079 1.7917595 0.6931472
## 7902                               2 5.652489 1.3862944 1.6094379
## 7903                               1 5.192957 1.0986123 1.0986123
## 7904                               1 4.499810 2.4849066 0.6931472
## 7905                               1 4.595120 4.0430513 0.6931472
## 7906                               2 4.709530 1.7917595 1.0986123
## 7907                               1 3.688879 1.6094379 1.9459101
## 7908                               1 3.555348 0.6931472 1.3862944
## 7909                               1 4.553877 0.0000000 1.6094379
## 7910                               3 4.488636 0.6931472 2.0794415
## 7911                              34 5.273000 1.9459101 3.4011974
## 7912                               1 4.934474 5.0238805 1.3862944
## 7913                               3 4.317488 2.6390573 1.0986123
## 7914                               1 4.605170 0.6931472 1.3862944
## 7915                               1 5.003946 1.9459101 1.9459101
## 7916                               1 6.802395 3.3322045 1.9459101
## 7917                               1 5.293305 1.0986123 1.9459101
## 7918                               1 4.248495 0.0000000 1.6094379
## 7919                               1 6.684612 0.0000000 3.4011974
## 7920                               8 3.761200 1.7917595 1.7917595
## 7921                               1 5.433722 3.0910425 1.0986123
## 7922                               1 5.273000 2.7080502 0.0000000
## 7923                               1 5.010635 1.0986123 2.6390573
## 7924                               2 4.605170 4.0430513 0.6931472
## 7925                               1 6.551080 2.0794415 0.0000000
## 7926                               1 5.703782 2.0794415 1.9459101
## 7927                               1 4.605170 2.3978953 1.6094379
## 7928                               1 3.912023 1.6094379 1.0986123
## 7929                               1 4.941642 4.0430513 0.6931472
## 7930                               1 5.220356 1.0986123 2.0794415
## 7931                               1 5.521461 0.6931472 1.0986123
## 7932                               2 4.488636 0.0000000 1.0986123
## 7933                               2 4.488636 0.0000000 0.0000000
## 7934                               1 5.393628 1.3862944 3.4339872
## 7935                               1 4.905275 0.0000000 1.6094379
## 7936                               1 5.075174 4.2484952 0.0000000
## 7937                               1 4.700480 2.6390573 0.6931472
## 7938                               1 4.330733 1.0986123 0.0000000
## 7939                               1 4.653960 1.6094379 0.0000000
## 7940                               1 4.787492 0.0000000 1.3862944
## 7941                               1 4.700480 1.0986123 1.6094379
## 7942                               1 4.828314 1.3862944 0.0000000
## 7943                               1 4.653960 3.8712010 2.6390573
## 7944                               1 4.605170 0.6931472 1.0986123
## 7945                              29 4.770685 1.3862944 3.4011974
## 7946                               1 4.248495 0.0000000 1.3862944
## 7947                               1 5.393628 4.7706846 0.6931472
## 7948                               1 5.043425 2.3025851 1.3862944
## 7949                               1 4.442651 2.9957323 0.0000000
## 7950                               2 3.688879 3.7376696 2.9957323
## 7951                               1 4.442651 3.3672958 1.0986123
## 7952                               1 4.430817 2.3025851 1.0986123
## 7953                               1 5.010635 0.6931472 1.0986123
## 7954                               2 3.912023 2.9957323 1.0986123
## 7955                               1 5.521461 3.1354942 0.6931472
## 7956                               1 4.248495 4.3307333 3.4011974
## 7957                               1 5.099866 0.6931472 0.0000000
## 7958                               1 4.787492 0.0000000 1.9459101
## 7959                               1 5.411646 0.0000000 1.3862944
## 7960                               1 3.850148 2.1972246 2.6390573
## 7961                               1 4.110874 3.3672958 0.6931472
## 7962                               1 6.906755 0.0000000 1.9459101
## 7963                               1 5.438079 0.0000000 1.9459101
## 7964                              34 5.010635 2.4849066 3.4011974
## 7965                              34 4.744932 2.4849066 3.4011974
## 7966                               1 4.248495 2.0794415 0.6931472
## 7967                              34 5.783825 0.6931472 3.4011974
## 7968                              34 5.043425 1.7917595 3.4011974
## 7969                              34 5.105945 2.3025851 3.4011974
## 7970                              34 5.105945 2.1972246 3.4011974
## 7971                              34 5.043425 2.0794415 3.4011974
## 7972                               1 5.010635 1.9459101 0.0000000
## 7973                              34 4.867534 2.3025851 3.4011974
## 7974                              34 4.828314 2.8332133 3.4011974
## 7975                               1 4.007333 0.6931472 1.9459101
## 7976                               1 5.043425 1.3862944 1.3862944
## 7977                               1 4.382027 2.4849066 1.9459101
## 7978                               1 3.688879 0.0000000 0.0000000
## 7979                               4 4.595120 2.4849066 1.0986123
## 7980                               4 4.077537 4.6821312 0.0000000
## 7981                               4 5.703782 0.0000000 0.6931472
## 7982                               1 4.007333 1.6094379 0.0000000
## 7983                               1 4.828314 1.7917595 0.0000000
## 7984                               1 4.934474 3.1780538 0.6931472
## 7985                               1 5.105945 0.0000000 0.0000000
## 7986                               1 3.912023 0.0000000 0.0000000
## 7987                               1 5.010635 1.0986123 1.6094379
## 7988                               1 4.174387 4.9558271 0.0000000
## 7989                              34 4.787492 2.1972246 3.4011974
## 7990                              34 4.744932 1.9459101 3.4011974
## 7991                               8 3.931826 2.9957323 2.5649494
## 7992                               1 4.499810 2.4849066 0.6931472
## 7993                               1 4.317488 0.0000000 1.0986123
## 7994                               1 5.247024 3.2188758 0.6931472
## 7995                               1 4.867534 0.0000000 0.6931472
## 7996                               1 4.382027 4.9558271 0.6931472
## 7997                               3 5.010635 0.6931472 0.0000000
## 7998                               3 4.317488 2.3978953 0.0000000
## 7999                               6 3.912023 0.6931472 3.4011974
## 8000                               1 4.094345 5.1532916 1.0986123
## 8001                               1 4.941642 0.0000000 0.6931472
## 8002                               1 4.700480 2.7080502 0.6931472
## 8003                               1 4.605170 1.6094379 2.7080502
## 8004                               1 4.248495 1.0986123 0.0000000
## 8005                               1 5.273000 3.2580965 1.9459101
## 8006                               1 4.828314 1.3862944 0.6931472
## 8007                               1 4.553877 0.6931472 2.6390573
## 8008                               1 3.401197 0.0000000 1.7917595
## 8009                               1 4.595120 1.3862944 1.0986123
## 8010                               1 5.105945 0.0000000 1.0986123
## 8011                               1 4.553877 1.6094379 1.3862944
## 8012                               1 9.210340 0.6931472 4.6051702
## 8013                               1 5.003946 1.3862944 1.3862944
## 8014                               1 5.247024 4.1108739 1.7917595
## 8015                               1 5.176150 3.0910425 1.0986123
## 8016                               1 4.174387 5.0434251 0.6931472
## 8017                               1 4.700480 0.6931472 0.0000000
## 8018                               1 3.555348 0.0000000 0.0000000
## 8019                               3 4.317488 3.8286414 0.6931472
## 8020                               1 3.951244 0.0000000 0.6931472
## 8021                               1 5.075174 3.6888795 1.3862944
## 8022                               1 4.605170 1.6094379 1.0986123
## 8023                               1 4.499810 2.8903718 0.6931472
## 8024                               3 4.595120 1.3862944 0.0000000
## 8025                               1 5.393628 0.6931472 1.9459101
## 8026                               1 3.806662 1.3862944 3.0445224
## 8027                               1 4.653960 2.8332133 0.6931472
## 8028                               2 3.912023 1.0986123 1.0986123
## 8029                               1 5.402677 4.5432948 0.6931472
## 8030                               1 4.787492 1.3862944 0.6931472
## 8031                               3 3.526361 3.3672958 2.9957323
## 8032                               1 4.867534 0.0000000 1.9459101
## 8033                               1 5.323010 1.0986123 1.0986123
## 8034                               1 5.010635 4.8283137 1.0986123
## 8035                               1 5.003946 1.6094379 1.0986123
## 8036                               2 3.912023 0.0000000 0.0000000
## 8037                               1 5.480639 0.0000000 1.6094379
## 8038                               1 3.871201 4.0073332 0.6931472
## 8039                               2 4.499810 3.2188758 1.6094379
## 8040                               1 4.442651 4.5538769 0.6931472
## 8041                               1 4.248495 1.6094379 1.3862944
## 8042                               4 4.934474 5.2149358 0.0000000
## 8043                               1 5.030438 4.3307333 0.0000000
## 8044                               1 5.652489 1.7917595 1.7917595
## 8045                               4 3.912023 4.8121844 0.0000000
## 8046                               1 3.555348 1.0986123 0.0000000
## 8047                               1 4.744932 0.6931472 2.3025851
## 8048                               1 4.290459 1.3862944 1.6094379
## 8049                               1 5.192957 4.8121844 1.0986123
## 8050                               1 4.094345 5.3423343 0.0000000
## 8051                               3 3.912023 3.5263605 0.6931472
## 8052                               1 4.060443 3.8918203 1.9459101
## 8053                               1 5.521461 4.4886364 0.6931472
## 8054                               1 6.212606 1.3862944 1.6094379
## 8055                               1 5.068904 2.0794415 1.3862944
## 8056                               1 4.941642 4.1896547 0.0000000
## 8057                               1 6.745236 5.1761497 0.0000000
## 8058                               1 5.501258 2.8332133 1.6094379
## 8059                               2 4.867534 2.0794415 0.0000000
## 8060                               2 3.912023 0.0000000 0.0000000
## 8061                               1 5.043425 1.6094379 0.6931472
## 8062                               1 3.295837 1.0986123 3.4011974
## 8063                               1 4.094345 4.4543473 0.0000000
## 8064                               2 4.787492 4.3438054 0.6931472
## 8065                               1 4.634729 4.8520303 4.6051702
## 8066                               1 4.442651 0.0000000 0.0000000
## 8067                               3 5.010635 1.9459101 1.0986123
## 8068                               1 5.393628 4.4308168 0.0000000
## 8069                               1 5.075174 2.8903718 0.0000000
## 8070                               1 4.941642 2.0794415 1.9459101
## 8071                               1 6.214608 3.5835189 1.0986123
## 8072                               2 4.941642 3.0445224 0.6931472
## 8073                               1 4.382027 0.0000000 0.0000000
## 8074                               4 4.248495 4.9487599 0.0000000
## 8075                               1 5.010635 2.4849066 1.3862944
## 8076                               1 5.273000 1.9459101 0.6931472
## 8077                               1 4.828314 1.9459101 0.6931472
## 8078                              29 4.787492 0.6931472 3.4011974
## 8079                               1 5.616771 4.0604430 1.0986123
## 8080                               1 4.094345 0.0000000 1.0986123
## 8081                               1 4.488636 1.9459101 1.0986123
## 8082                               1 5.493061 3.2580965 0.0000000
## 8083                               1 3.912023 0.6931472 0.6931472
## 8084                               2 5.010635 2.3978953 1.3862944
## 8085                               1 5.521461 1.0986123 0.6931472
## 8086                               1 4.691348 4.7706846 0.6931472
## 8087                               1 5.605802 1.0986123 1.0986123
## 8088                               1 4.605170 0.0000000 0.0000000
## 8089                               1 5.135798 1.0986123 1.9459101
## 8090                               1 5.164786 1.6094379 0.6931472
## 8091                               1 4.442651 0.0000000 1.7917595
## 8092                               1 5.010635 0.0000000 1.3862944
## 8093                               2 4.753590 4.6151205 0.6931472
## 8094                               1 4.605170 0.0000000 1.6094379
## 8095                               1 5.857933 1.9459101 0.0000000
## 8096                               1 4.382027 4.7184989 1.0986123
## 8097                               1 4.382027 2.8332133 1.6094379
## 8098                               1 4.700480 4.6347290 3.3672958
## 8099                               1 5.587249 2.6390573 0.6931472
## 8100                               1 4.007333 0.6931472 0.0000000
## 8101                               1 5.986452 4.0073332 1.3862944
## 8102                               1 4.382027 1.0986123 0.0000000
## 8103                               3 4.828314 1.0986123 3.4011974
## 8104                               5 3.637586 3.7135721 0.0000000
## 8105                               1 4.382027 2.8903718 0.6931472
## 8106                               1 5.700444 5.0751738 3.3322045
## 8107                               1 4.828314 0.6931472 1.3862944
## 8108                              52 4.859812 1.3862944 3.4011974
## 8109                               1 5.247024 3.5835189 0.0000000
## 8110                               1 4.499810 0.0000000 0.0000000
## 8111                               1 4.418841 5.1817836 0.6931472
## 8112                               1 5.288267 1.6094379 3.4011974
## 8113                               1 5.003946 2.6390573 0.6931472
## 8114                               1 4.787492 1.7917595 0.6931472
## 8115                               1 4.962845 0.6931472 2.6390573
## 8116                               1 4.787492 0.0000000 0.0000000
## 8117                               3 5.010635 3.9318256 0.0000000
## 8118                               1 4.700480 0.0000000 0.0000000
## 8119                               1 4.828314 3.4339872 0.6931472
## 8120                               1 5.598422 3.7841896 1.3862944
## 8121                               2 4.700480 3.6375862 0.6931472
## 8122                               1 4.976734 1.9459101 1.6094379
## 8123                               1 5.247024 0.6931472 1.9459101
## 8124                               1 5.521461 1.6094379 0.6931472
## 8125                               1 3.806662 0.0000000 2.1972246
## 8126                               1 5.298317 2.1972246 0.6931472
## 8127                               1 5.231109 0.0000000 1.0986123
## 8128                               3 3.367296 4.6249728 0.6931472
## 8129                               1 4.605170 1.6094379 1.0986123
## 8130                               2 4.499810 1.7917595 1.9459101
## 8131                               2 4.442651 1.9459101 2.3978953
## 8132                               1 3.761200 1.3862944 0.0000000
## 8133                               1 4.976734 5.3327188 0.6931472
## 8134                               1 4.174387 3.6109179 1.9459101
## 8135                               1 3.806662 0.6931472 0.0000000
## 8136                               1 4.867534 4.3438054 0.6931472
## 8137                               1 4.595120 4.5951199 1.0986123
## 8138                               1 5.003946 0.0000000 1.3862944
## 8139                               5 3.806662 6.1047932 0.0000000
## 8140                               1 4.941642 1.3862944 0.6931472
## 8141                               1 4.248495 2.3025851 1.3862944
## 8142                               1 4.248495 1.6094379 1.0986123
## 8143                               1 4.553877 3.8501476 1.3862944
## 8144                               1 5.129899 2.0794415 1.3862944
## 8145                               1 4.700480 2.6390573 1.0986123
## 8146                               1 4.317488 3.0910425 0.6931472
## 8147                               2 4.442651 3.4657359 0.6931472
## 8148                               1 4.574711 4.7874917 0.6931472
## 8149                               3 4.787492 2.3978953 1.9459101
## 8150                               1 4.691348 4.4543473 0.0000000
## 8151                               1 5.068904 2.0794415 3.4339872
## 8152                               1 4.317488 0.0000000 0.0000000
## 8153                               2 4.595120 1.0986123 0.0000000
## 8154                               1 4.174387 1.7917595 2.6390573
## 8155                               1 4.553877 1.7917595 0.0000000
## 8156                               2 4.787492 4.3040651 0.6931472
## 8157                               1 4.905275 5.1590553 0.6931472
## 8158                               1 4.744932 1.0986123 1.3862944
## 8159                               1 4.605170 2.6390573 0.0000000
## 8160                               3 4.595120 5.4026774 0.0000000
## 8161                               1 4.997212 2.1972246 1.0986123
## 8162                               1 5.010635 1.0986123 1.9459101
## 8163                               2 5.855072 3.4339872 1.0986123
## 8164                               1 5.105945 1.6094379 1.6094379
## 8165                               1 4.553877 1.3862944 0.0000000
## 8166                               1 4.859812 2.1972246 0.0000000
## 8167                               5 5.521461 2.8332133 0.6931472
## 8168                               1 6.551080 0.0000000 0.0000000
## 8169                               1 5.105945 0.0000000 1.3862944
## 8170                               1 6.109248 2.0794415 0.6931472
## 8171                               1 4.787492 1.9459101 0.6931472
## 8172                               3 4.007333 3.8501476 0.6931472
## 8173                               3 3.555348 0.0000000 1.6094379
## 8174                               1 4.700480 0.6931472 0.0000000
## 8175                               1 6.214608 2.3978953 1.0986123
## 8176                               1 4.595120 1.3862944 0.0000000
## 8177                               1 5.123964 2.9957323 0.6931472
## 8178                               1 5.298317 3.3322045 0.6931472
## 8179                               1 5.872118 3.7376696 1.0986123
## 8180                               1 5.247024 2.1972246 1.0986123
## 8181                               1 4.595120 0.6931472 0.0000000
## 8182                               1 5.192957 2.0794415 0.6931472
## 8183                               1 4.976734 2.1972246 1.0986123
## 8184                               1 4.007333 0.0000000 0.0000000
## 8185                              10 4.174387 1.6094379 0.0000000
## 8186                               1 4.867534 5.0172798 0.6931472
## 8187                               1 4.219508 0.0000000 1.7917595
## 8188                               1 5.075174 3.2188758 2.3025851
## 8189                               2 4.584967 4.5108595 1.0986123
## 8190                               2 4.499810 5.5683445 0.6931472
## 8191                               2 4.828314 5.0238805 0.6931472
## 8192                               1 4.553877 1.3862944 0.6931472
## 8193                               1 4.867534 2.8903718 1.0986123
## 8194                               1 4.867534 1.0986123 0.6931472
## 8195                               1 4.828314 2.8332133 1.0986123
## 8196                               1 5.105945 2.3025851 2.3025851
## 8197                               1 4.499810 2.3978953 0.6931472
## 8198                               1 4.174387 4.5538769 1.0986123
## 8199                               1 4.189655 1.7917595 0.6931472
## 8200                               1 5.416100 4.7621739 0.6931472
## 8201                               1 4.077537 1.3862944 1.0986123
## 8202                               1 4.499810 1.0986123 2.0794415
## 8203                               1 4.828314 1.0986123 0.6931472
## 8204                               1 6.109248 1.6094379 0.0000000
## 8205                               2 3.912023 1.3862944 2.7080502
## 8206                               1 4.820282 0.0000000 0.6931472
## 8207                               3 3.367296 3.4011974 1.0986123
## 8208                               1 4.454347 0.0000000 1.9459101
## 8209                               1 4.454347 0.6931472 0.6931472
## 8210                               1 5.700444 2.8903718 0.6931472
## 8211                               1 3.583519 1.0986123 0.6931472
## 8212                               1 4.605170 2.7080502 0.0000000
## 8213                               9 4.700480 2.3025851 3.4011974
## 8214                               1 6.109248 5.3278762 1.3862944
## 8215                               2 4.007333 4.0253517 0.6931472
## 8216                               2 4.007333 3.5263605 0.0000000
## 8217                               1 4.262680 4.1896547 3.4011974
## 8218                               2 4.143135 1.0986123 1.3862944
## 8219                               1 5.521461 2.3978953 1.9459101
## 8220                               1 5.068904 2.6390573 1.0986123
## 8221                               1 4.248495 0.0000000 0.0000000
## 8222                               1 4.787492 1.6094379 1.6094379
## 8223                               1 4.317488 0.0000000 3.2188758
## 8224                               1 4.499810 2.1972246 1.6094379
## 8225                               1 5.451038 2.3025851 3.4011974
## 8226                               1 4.744932 0.6931472 1.9459101
## 8227                               1 4.174387 1.7917595 0.6931472
## 8228                               2 4.382027 3.8918203 1.6094379
## 8229                               1 4.174387 1.0986123 0.0000000
## 8230                               1 4.934474 2.1972246 0.0000000
## 8231                               1 4.189655 1.0986123 1.7917595
## 8232                               1 5.298317 2.8903718 1.0986123
## 8233                               1 5.164786 3.7841896 1.0986123
## 8234                               2 4.564348 4.9344739 1.0986123
## 8235                               1 4.605170 2.5649494 0.0000000
## 8236                               1 3.784190 0.0000000 1.6094379
## 8237                               1 5.164786 1.6094379 1.3862944
## 8238                               2 6.396930 2.4849066 1.6094379
## 8239                               1 3.465736 1.9459101 1.0986123
## 8240                               5 4.584967 4.9904326 0.0000000
## 8241                               1 5.389072 3.4011974 0.6931472
## 8242                               1 5.164786 2.8332133 3.0445224
## 8243                               1 4.787492 2.5649494 0.6931472
## 8244                               1 4.941642 0.0000000 0.0000000
## 8245                               1 4.430817 5.3181200 0.0000000
## 8246                               1 4.382027 0.0000000 0.0000000
## 8247                               1 3.806662 4.4659081 1.0986123
## 8248                               1 3.637586 0.6931472 0.0000000
## 8249                               1 4.787492 2.5649494 0.0000000
## 8250                               1 4.941642 0.6931472 1.3862944
## 8251                               2 4.248495 0.0000000 0.0000000
## 8252                               1 5.298317 2.4849066 1.6094379
## 8253                               1 4.488636 4.6249728 1.6094379
## 8254                               1 5.521461 2.3978953 1.0986123
## 8255                               1 4.828314 2.3978953 0.6931472
## 8256                               1 3.850148 0.6931472 0.0000000
## 8257                               4 5.075174 5.0106353 0.0000000
## 8258                              10 4.174387 1.7917595 0.0000000
## 8259                              10 4.143135 1.0986123 0.0000000
## 8260                               1 5.181784 5.0937502 1.0986123
## 8261                               1 5.135798 1.6094379 0.6931472
## 8262                               2 3.912023 5.3518581 0.0000000
## 8263                               2 5.686975 0.6931472 2.1972246
## 8264                               1 4.605170 1.0986123 0.0000000
## 8265                               1 4.174387 0.0000000 0.0000000
## 8266                               1 4.499810 0.0000000 1.6094379
## 8267                               1 5.062595 4.8675345 3.4011974
## 8268                               1 6.109248 3.8712010 0.6931472
## 8269                               1 4.867534 2.5649494 0.0000000
## 8270                               1 4.248495 4.9199809 1.0986123
## 8271                               1 4.248495 1.0986123 1.9459101
## 8272                               1 5.135798 2.5649494 1.6094379
## 8273                               2 6.173786 0.6931472 1.0986123
## 8274                               1 4.787492 0.6931472 1.0986123
## 8275                               1 5.700444 4.2341065 0.0000000
## 8276                               2 3.806662 1.6094379 1.3862944
## 8277                               1 4.248495 1.3862944 0.6931472
## 8278                               1 3.891820 0.0000000 0.0000000
## 8279                               2 4.744932 0.0000000 0.0000000
## 8280                               1 4.007333 2.0794415 1.0986123
## 8281                               1 4.007333 0.0000000 0.0000000
## 8282                               2 5.521461 3.8712010 3.4011974
## 8283                               1 5.988961 2.3978953 1.0986123
## 8284                               1 5.288267 0.0000000 1.0986123
## 8285                               1 4.356709 0.0000000 0.0000000
## 8286                               1 5.298317 0.0000000 0.6931472
## 8287                               1 5.703782 0.0000000 3.1354942
## 8288                               1 5.416100 1.0986123 0.6931472
## 8289                               1 6.476972 3.1780538 0.6931472
## 8290                               2 3.970292 1.9459101 1.9459101
## 8291                               1 5.068904 3.0910425 1.6094379
## 8292                               9 4.174387 1.0986123 3.4011974
## 8293                               3 4.787492 4.4543473 1.0986123
## 8294                               1 5.634790 1.3862944 0.0000000
## 8295                               1 4.094345 3.7376696 0.6931472
## 8296                               2 4.605170 0.6931472 0.0000000
## 8297                               1 5.075174 1.6094379 1.6094379
## 8298                               1 3.806662 0.0000000 0.0000000
## 8299                               1 3.663562 0.6931472 0.0000000
## 8300                               1 4.787492 3.0445224 1.3862944
## 8301                               2 4.595120 2.0794415 0.0000000
## 8302                               1 4.859812 1.6094379 1.0986123
## 8303                               1 5.857933 4.0604430 1.0986123
## 8304                               1 5.703782 0.0000000 0.0000000
## 8305                               1 4.941642 1.3862944 0.6931472
## 8306                               1 4.787492 0.6931472 0.0000000
## 8307                               1 4.158883 4.0253517 0.6931472
## 8308                               1 4.787492 0.6931472 0.6931472
## 8309                               1 3.688879 2.4849066 1.9459101
## 8310                               1 4.787492 1.9459101 1.3862944
## 8311                               1 5.010635 2.3025851 1.0986123
## 8312                               1 6.476972 2.6390573 1.7917595
## 8313                               2 4.605170 3.4965076 0.6931472
## 8314                               1 5.669881 4.3040651 0.0000000
## 8315                               1 4.787492 1.6094379 1.0986123
## 8316                               2 5.459586 4.7095302 1.0986123
## 8317                               1 4.553877 2.3025851 0.0000000
## 8318                               1 5.634790 0.0000000 3.4011974
## 8319                               1 5.273000 3.4011974 0.6931472
## 8320                               1 4.605170 2.6390573 1.0986123
## 8321                               1 4.605170 1.9459101 1.0986123
## 8322                               1 4.867534 1.7917595 1.0986123
## 8323                               1 4.867534 0.6931472 1.9459101
## 8324                               2 4.828314 3.2958369 1.3862944
## 8325                               2 4.867534 3.5263605 1.3862944
## 8326                               1 4.787492 4.9558271 0.0000000
## 8327                               3 5.192957 1.0986123 0.6931472
## 8328                               5 4.382027 4.5747110 0.6931472
## 8329                               1 5.521461 0.6931472 0.6931472
## 8330                               1 5.111988 1.7917595 1.0986123
## 8331                               1 4.158883 0.0000000 1.3862944
## 8332                               1 3.555348 0.0000000 1.6094379
## 8333                               1 4.787492 0.0000000 0.0000000
## 8334                               1 4.094345 1.9459101 0.6931472
## 8335                               1 5.370638 0.0000000 0.0000000
## 8336                               2 4.060443 5.3518581 0.0000000
## 8337                               1 3.688879 4.2626799 1.0986123
## 8338                               2 4.356709 1.3862944 0.0000000
## 8339                               1 4.382027 0.0000000 1.7917595
## 8340                               1 4.382027 0.6931472 0.6931472
## 8341                               1 5.068904 1.7917595 1.9459101
## 8342                               1 4.976734 4.9972123 0.6931472
## 8343                               1 4.867534 0.6931472 0.0000000
## 8344                               1 4.605170 0.6931472 0.0000000
## 8345                               1 4.143135 0.6931472 1.0986123
## 8346                               1 5.241747 3.0445224 1.6094379
## 8347                               1 4.595120 0.6931472 1.9459101
## 8348                               1 3.555348 0.0000000 0.0000000
## 8349                               1 5.298317 1.7917595 0.0000000
## 8350                               1 3.555348 0.6931472 1.6094379
## 8351                               1 4.094345 0.0000000 0.0000000
## 8352                               1 4.382027 2.0794415 0.6931472
## 8353                               1 5.293305 2.9957323 1.0986123
## 8354                               4 5.159055 2.9444390 0.0000000
## 8355                               1 4.787492 2.3978953 1.9459101
## 8356                               1 4.584967 0.0000000 1.3862944
## 8357                               1 4.779123 1.3862944 0.6931472
## 8358                               2 4.317488 4.7273878 0.0000000
## 8359                               2 6.109248 3.5263605 0.6931472
## 8360                               1 4.007333 2.1972246 0.6931472
## 8361                               1 4.158883 3.1780538 0.0000000
## 8362                               1 4.663439 0.6931472 1.6094379
## 8363                               1 3.806662 2.6390573 1.0986123
## 8364                               1 4.828314 0.6931472 0.6931472
## 8365                               1 4.248495 0.6931472 0.0000000
## 8366                               1 3.688879 0.6931472 0.0000000
## 8367                               2 4.442651 1.0986123 1.0986123
## 8368                               1 4.317488 1.3862944 0.0000000
## 8369                               1 5.164786 2.1972246 0.0000000
## 8370                               1 5.010635 0.0000000 0.0000000
## 8371                               5 4.859812 3.8066625 0.6931472
## 8372                               1 4.382027 4.3040651 0.6931472
## 8373                               1 4.787492 2.8903718 0.0000000
## 8374                               1 4.605170 0.6931472 1.9459101
## 8375                               1 3.555348 1.0986123 0.0000000
## 8376                               1 5.594711 0.0000000 0.0000000
## 8377                               1 3.806662 0.6931472 3.4011974
## 8378                               1 5.220356 0.0000000 0.0000000
## 8379                               1 4.787492 0.6931472 3.4011974
## 8380                               1 4.574711 0.6931472 0.0000000
## 8381                               1 5.010635 1.7917595 0.0000000
## 8382                               1 4.905275 3.1354942 0.6931472
## 8383                               1 3.850148 0.6931472 1.0986123
## 8384                               1 4.787492 1.0986123 0.0000000
## 8385                               1 4.605170 2.3978953 0.0000000
## 8386                               1 5.501258 2.6390573 1.0986123
## 8387                               1 5.010635 0.0000000 1.0986123
## 8388                               1 4.553877 0.0000000 3.3322045
## 8389                               1 4.787492 1.0986123 1.3862944
## 8390                               1 4.976734 4.1271344 1.0986123
## 8391                               1 4.691348 3.3322045 0.6931472
## 8392                               1 4.382027 0.6931472 1.0986123
## 8393                               1 4.653960 1.9459101 0.0000000
## 8394                               1 4.828314 4.8675345 1.0986123
## 8395                               1 4.382027 0.0000000 0.6931472
## 8396                               1 4.941642 0.6931472 0.6931472
## 8397                               1 5.521461 3.0445224 1.0986123
## 8398                               1 6.109248 0.0000000 1.9459101
## 8399                               2 4.787492 1.7917595 1.0986123
## 8400                               1 5.010635 0.0000000 0.0000000
## 8401                               1 4.700480 2.1972246 0.0000000
## 8402                               1 5.105945 5.1817836 1.0986123
## 8403                               4 4.234107 0.0000000 3.4339872
## 8404                               4 4.234107 1.0986123 3.4339872
## 8405                               2 5.192957 3.0910425 0.0000000
## 8406                               1 3.688879 0.6931472 0.0000000
## 8407                               2 3.688879 1.3862944 1.0986123
## 8408                               1 4.691348 0.0000000 0.0000000
## 8409                               2 4.605170 2.7080502 0.0000000
## 8410                               2 4.248495 1.0986123 1.6094379
## 8411                               1 5.288267 0.0000000 1.6094379
## 8412                               1 3.912023 1.3862944 1.0986123
## 8413                               1 4.867534 4.6634391 0.6931472
## 8414                               1 4.905275 1.7917595 0.6931472
## 8415                               1 4.682131 4.0775374 0.6931472
## 8416                               1 6.388561 3.4011974 0.6931472
## 8417                               1 4.859812 0.6931472 1.6094379
## 8418                               1 4.477337 2.7725887 1.3862944
## 8419                               1 4.317488 3.3322045 0.0000000
## 8420                               1 4.248495 0.6931472 0.0000000
## 8421                               1 5.220356 1.0986123 0.0000000
## 8422                               1 4.976734 1.6094379 1.0986123
## 8423                               3 5.010635 0.0000000 0.0000000
## 8424                              13 4.248495 5.5529596 0.0000000
## 8425                               1 5.010635 3.5835189 0.6931472
## 8426                               1 4.605170 2.4849066 0.0000000
## 8427                               1 4.234107 0.0000000 0.0000000
## 8428                               1 4.744932 4.1743873 1.0986123
## 8429                               1 4.787492 2.8332133 1.6094379
## 8430                               1 5.192957 3.4011974 1.0986123
## 8431                               2 4.990433 4.6913479 1.0986123
## 8432                               1 4.828314 1.7917595 0.6931472
## 8433                               1 5.793014 4.9767337 0.6931472
## 8434                               1 4.442651 1.7917595 0.0000000
## 8435                               1 4.094345 2.3025851 1.9459101
## 8436                               1 4.094345 1.9459101 1.0986123
## 8437                               1 5.010635 5.2522734 0.0000000
## 8438                               2 4.553877 4.7791235 0.0000000
## 8439                               1 5.220356 4.0253517 1.0986123
## 8440                               2 4.488636 5.3612922 0.0000000
## 8441                               1 4.204693 5.0039463 0.6931472
## 8442                               1 4.828314 4.6539604 1.0986123
## 8443                               1 4.382027 1.3862944 0.0000000
## 8444                               2 5.293305 1.3862944 1.0986123
## 8445                               1 5.886104 3.5263605 1.7917595
## 8446                               1 5.298317 0.0000000 1.0986123
## 8447                               2 4.382027 3.7376696 1.3862944
## 8448                               2 5.991465 2.1972246 1.9459101
## 8449                               1 4.174387 1.9459101 2.0794415
## 8450                               2 4.248495 2.0794415 1.0986123
## 8451                               1 4.442651 3.1780538 0.6931472
## 8452                               1 4.219508 1.9459101 0.6931472
## 8453                               1 4.867534 1.3862944 0.0000000
## 8454                               1 5.370638 4.5432948 1.0986123
## 8455                               1 5.105945 3.6375862 1.3862944
## 8456                               1 4.605170 1.7917595 0.0000000
## 8457                               1 4.442651 0.0000000 1.0986123
## 8458                               1 4.653960 2.7080502 0.6931472
## 8459                               1 4.605170 4.2626799 1.6094379
## 8460                               1 6.212606 5.0039463 1.0986123
## 8461                               1 5.010635 1.3862944 1.0986123
## 8462                               1 3.988984 1.3862944 3.2188758
## 8463                               1 5.521461 0.0000000 0.0000000
## 8464                               1 3.688879 3.1354942 0.0000000
## 8465                               1 4.553877 0.0000000 1.3862944
## 8466                             121 5.129899 1.0986123 3.4011974
## 8467                               1 5.164786 2.9444390 1.3862944
## 8468                               1 4.976734 1.3862944 0.0000000
## 8469                               1 4.905275 1.3862944 1.3862944
## 8470                               1 4.828314 0.6931472 1.0986123
## 8471                               1 4.605170 1.9459101 0.0000000
## 8472                              29 4.770685 1.3862944 3.4011974
## 8473                               2 5.147494 4.9052748 1.0986123
## 8474                               3 4.653960 0.0000000 0.0000000
## 8475                               3 4.007333 0.0000000 0.0000000
## 8476                               1 4.595120 3.4339872 0.6931472
## 8477                               1 4.477337 2.5649494 0.6931472
## 8478                               1 4.828314 1.0986123 0.0000000
## 8479                               1 4.624973 4.1588831 1.0986123
## 8480                               2 3.688879 0.0000000 0.6931472
## 8481                               1 4.779123 2.4849066 1.6094379
## 8482                               1 4.615121 3.9889840 1.3862944
## 8483                               1 4.174387 1.0986123 1.0986123
## 8484                               6 3.688879 2.7080502 3.4011974
## 8485                               1 4.691348 0.0000000 0.6931472
## 8486                               6 3.688879 3.0445224 3.4011974
## 8487                               1 4.317488 4.8978398 1.0986123
## 8488                               1 4.499810 3.1780538 0.6931472
## 8489                               1 4.465908 2.1972246 1.0986123
## 8490                               1 5.220356 2.4849066 0.6931472
## 8491                               1 3.806662 2.7080502 2.6390573
## 8492                               2 5.703782 3.9318256 1.9459101
## 8493                               1 4.941642 2.9444390 0.6931472
## 8494                               1 4.248495 1.6094379 1.6094379
## 8495                               1 4.382027 1.0986123 0.0000000
## 8496                               1 3.806662 1.9459101 0.0000000
## 8497                               1 3.688879 0.0000000 2.0794415
## 8498                               1 5.347108 2.3025851 0.0000000
## 8499                               1 5.416100 3.1354942 3.4011974
## 8500                               1 4.248495 0.0000000 0.0000000
## 8501                               1 4.787492 1.0986123 0.0000000
## 8502                               1 4.890349 5.2094862 0.6931472
## 8503                               1 4.094345 0.0000000 0.6931472
## 8504                               1 4.158883 2.9957323 0.6931472
## 8505                               2 4.234107 3.2958369 1.0986123
## 8506                               1 3.688879 0.6931472 0.0000000
## 8507                               1 5.247024 1.0986123 0.0000000
## 8508                               1 5.616771 4.0943446 0.6931472
## 8509                               1 5.298317 5.3132060 1.0986123
## 8510                               1 4.317488 3.6109179 1.3862944
## 8511                               1 5.192957 0.6931472 2.6390573
## 8512                               1 4.077537 4.5643482 0.6931472
## 8513                               1 5.003946 0.6931472 1.6094379
## 8514                               2 4.007333 4.6728288 0.0000000
## 8515                               1 4.317488 2.4849066 0.0000000
## 8516                               1 5.991465 0.0000000 0.6931472
## 8517                               1 5.129899 4.2195077 1.3862944
## 8518                               1 4.828314 1.9459101 0.6931472
## 8519                               1 4.060443 3.4011974 0.6931472
## 8520                               1 5.017280 2.9444390 1.0986123
## 8521                               1 4.204693 1.9459101 2.6390573
## 8522                               1 5.220356 1.3862944 1.0986123
## 8523                               1 5.247024 4.1431347 0.6931472
## 8524                               1 4.356709 2.1972246 2.7725887
## 8525                               2 4.094345 4.9416424 0.0000000
## 8526                               1 5.347108 5.2626902 0.6931472
## 8527                               1 4.934474 1.7917595 0.6931472
## 8528                               1 5.298317 2.4849066 1.6094379
## 8529                               1 4.317488 5.0172798 0.0000000
## 8530                              21 4.812184 1.9459101 3.4011974
## 8531                               1 3.332205 0.0000000 0.0000000
## 8532                              21 4.787492 1.9459101 3.4011974
## 8533                               3 4.442651 1.6094379 0.6931472
## 8534                               1 4.804021 4.6913479 1.0986123
## 8535                               1 4.595120 2.7725887 1.6094379
## 8536                               1 4.700480 3.8066625 1.3862944
## 8537                               2 4.488636 1.9459101 0.6931472
## 8538                               1 3.871201 2.0794415 1.3862944
## 8539                              11 4.499810 2.9957323 3.4011974
## 8540                              11 4.499810 3.4339872 3.4011974
## 8541                               1 4.700480 0.0000000 0.0000000
## 8542                               1 5.010635 1.9459101 0.0000000
## 8543                               1 4.787492 1.3862944 1.6094379
## 8544                               1 4.700480 4.8283137 1.0986123
## 8545                               3 3.806662 4.1896547 0.0000000
## 8546                               1 4.317488 0.0000000 0.0000000
## 8547                               2 4.174387 5.0625950 0.0000000
## 8548                               1 5.135798 1.3862944 0.6931472
## 8549                               1 4.941642 0.0000000 0.0000000
## 8550                               1 5.135798 3.6635616 1.0986123
## 8551                               5 4.499810 4.9558271 0.0000000
## 8552                               1 5.164786 1.6094379 0.6931472
## 8553                               1 4.905275 1.0986123 0.0000000
## 8554                               1 5.164786 0.0000000 1.0986123
## 8555                               1 3.688879 0.6931472 2.7080502
## 8556                               1 4.234107 5.2257467 0.6931472
## 8557                               1 4.442651 3.2958369 3.4011974
## 8558                               1 5.043425 0.0000000 1.0986123
## 8559                               1 5.075174 3.2580965 0.0000000
## 8560                               1 3.912023 2.7725887 3.0445224
## 8561                               1 4.828314 0.0000000 1.0986123
## 8562                               1 4.174387 0.6931472 0.6931472
## 8563                               2 3.806662 4.1431347 0.0000000
## 8564                               1 4.934474 3.0445224 0.6931472
## 8565                               5 4.442651 5.1474945 0.6931472
## 8566                               1 4.828314 4.6821312 0.6931472
## 8567                               1 4.744932 2.8903718 0.6931472
## 8568                               1 5.164786 0.0000000 4.0943446
## 8569                               2 4.077537 3.3322045 1.3862944
## 8570                               1 4.382027 0.0000000 1.0986123
## 8571                               1 3.912023 2.3025851 2.6390573
## 8572                               1 4.499810 1.9459101 1.3862944
## 8573                               1 5.521461 3.4965076 1.9459101
## 8574                               1 5.370638 4.3174881 0.0000000
## 8575                               1 5.192957 1.7917595 1.0986123
## 8576                               2 5.521461 2.8903718 0.6931472
## 8577                               1 6.551080 0.0000000 1.6094379
## 8578                               1 4.770685 5.5568281 0.6931472
## 8579                               1 4.248495 2.7080502 0.0000000
## 8580                               1 4.700480 2.1972246 1.9459101
## 8581                               2 5.700444 4.4998097 1.0986123
## 8582                               1 4.553877 1.0986123 1.3862944
## 8583                               1 4.248495 0.6931472 0.6931472
## 8584                               5 5.117994 3.7841896 3.4011974
## 8585                               1 4.634729 3.7376696 1.6094379
## 8586                               1 4.976734 2.5649494 1.7917595
## 8587                               1 4.605170 5.2311086 0.6931472
## 8588                               1 5.616771 2.0794415 1.7917595
## 8589                               2 4.094345 0.0000000 0.0000000
## 8590                               1 4.248495 1.3862944 0.0000000
## 8591                               1 5.703782 1.3862944 1.3862944
## 8592                               1 5.913503 4.8828019 0.6931472
## 8593                               1 3.912023 0.6931472 0.0000000
## 8594                               1 4.219508 0.0000000 0.0000000
## 8595                               3 4.521789 4.0943446 1.0986123
## 8596                               1 4.605170 1.9459101 2.3025851
## 8597                               1 4.941642 2.1972246 1.9459101
## 8598                               1 5.010635 2.8332133 1.0986123
## 8599                               1 3.806662 0.6931472 0.0000000
## 8600                               1 4.248495 0.6931472 1.9459101
## 8601                               1 5.438079 5.0814044 0.0000000
## 8602                               1 4.382027 2.0794415 1.0986123
## 8603                               1 3.688879 1.0986123 1.0986123
## 8604                               1 4.499810 2.9444390 1.0986123
## 8605                               1 6.396930 0.6931472 2.3025851
## 8606                               1 3.912023 0.6931472 0.6931472
## 8607                               1 5.273000 4.4308168 1.0986123
## 8608                               1 5.521461 2.3978953 0.6931472
## 8609                               1 5.164786 1.3862944 0.6931472
## 8610                               1 5.010635 2.1972246 1.9459101
## 8611                               1 5.164786 0.0000000 0.0000000
## 8612                               2 4.595120 0.6931472 0.6931472
## 8613                               1 4.248495 2.5649494 1.0986123
## 8614                               1 3.871201 3.4657359 0.0000000
## 8615                               1 5.293305 1.7917595 0.6931472
## 8616                               1 4.499810 1.7917595 1.0986123
## 8617                               1 4.867534 1.0986123 0.6931472
## 8618                               1 5.164786 1.9459101 3.4011974
## 8619                               1 3.871201 1.0986123 1.6094379
## 8620                               1 4.248495 4.4998097 1.0986123
## 8621                               1 5.940171 1.6094379 1.0986123
## 8622                               2 3.806662 3.7612001 0.0000000
## 8623                               1 4.007333 1.6094379 1.6094379
## 8624                               1 5.075174 2.3025851 1.6094379
## 8625                               1 4.672829 0.6931472 0.0000000
## 8626                               1 5.043425 4.9344739 0.6931472
## 8627                               2 5.616771 1.6094379 1.3862944
## 8628                               1 4.382027 3.4965076 0.6931472
## 8629                               1 5.323010 3.1354942 0.6931472
## 8630                               1 5.010635 0.6931472 0.0000000
## 8631                               1 4.595120 2.8332133 4.0775374
## 8632                               7 4.077537 5.4680601 0.0000000
## 8633                               1 3.806662 2.9444390 3.4011974
## 8634                               1 5.598422 5.2729996 3.4011974
## 8635                               2 5.010635 3.0445224 1.0986123
## 8636                               1 3.555348 0.0000000 0.0000000
## 8637                               1 4.595120 1.6094379 1.6094379
## 8638                               3 5.010635 2.1972246 1.9459101
## 8639                               1 3.912023 1.9459101 1.0986123
## 8640                               1 4.369448 3.0910425 2.7080502
## 8641                               1 5.293305 3.5553481 1.9459101
## 8642                               1 4.174387 1.0986123 0.0000000
## 8643                               2 3.761200 3.0910425 0.6931472
## 8644                               1 4.867534 2.4849066 1.6094379
## 8645                               1 5.192957 0.6931472 0.6931472
## 8646                               2 3.496508 4.2904594 0.0000000
## 8647                               2 3.806662 5.2470241 0.0000000
## 8648                               2 4.174387 3.5553481 0.0000000
## 8649                               1 3.912023 0.6931472 0.0000000
## 8650                               1 5.010635 0.6931472 1.0986123
## 8651                               1 4.595120 2.3978953 1.9459101
## 8652                               5 3.912023 6.0497335 0.0000000
## 8653                               1 5.521461 1.3862944 0.6931472
## 8654                               5 3.912023 6.0112672 0.0000000
## 8655                               3 3.912023 1.7917595 0.0000000
## 8656                               2 4.605170 2.6390573 0.6931472
## 8657                               6 4.077537 3.2580965 0.0000000
## 8658                               2 4.382027 0.0000000 0.0000000
## 8659                               1 4.553877 1.3862944 1.0986123
## 8660                               1 4.700480 1.0986123 0.6931472
## 8661                               1 4.094345 0.0000000 1.6094379
## 8662                               1 4.158883 4.8520303 0.0000000
## 8663                               1 5.164786 1.9459101 0.6931472
## 8664                               1 5.857933 1.6094379 0.6931472
## 8665                               1 4.382027 0.6931472 0.0000000
## 8666                               1 5.298317 3.8918203 0.6931472
## 8667                               2 4.852030 2.3025851 1.0986123
## 8668                               3 5.010635 2.3978953 3.4011974
## 8669                               3 4.605170 4.7874917 1.0986123
## 8670                               2 4.553877 5.2040067 0.0000000
## 8671                               1 5.393628 3.2958369 1.6094379
## 8672                               1 4.990433 3.1354942 1.0986123
## 8673                               2 4.553877 0.0000000 0.6931472
## 8674                               1 5.075174 0.6931472 1.6094379
## 8675                               1 5.416100 4.6539604 1.0986123
## 8676                               6 3.688879 2.9444390 3.4011974
## 8677                               2 4.787492 5.3230100 0.0000000
## 8678                               1 4.094345 1.3862944 1.0986123
## 8679                               1 4.605170 0.6931472 0.0000000
## 8680                               1 4.343805 2.4849066 0.6931472
## 8681                               1 5.010635 2.3025851 1.0986123
## 8682                               3 5.075174 3.6375862 1.0986123
## 8683                               1 4.248495 1.6094379 0.0000000
## 8684                               1 5.370638 4.5951199 1.3862944
## 8685                               1 4.094345 0.0000000 1.0986123
## 8686                               1 4.867534 2.1972246 0.0000000
## 8687                               1 4.595120 0.0000000 1.0986123
## 8688                               1 5.164786 4.5643482 1.0986123
## 8689                               1 5.298317 1.0986123 0.6931472
## 8690                               2 4.595120 4.5849675 1.0986123
## 8691                               2 3.806662 3.3672958 1.0986123
## 8692                               1 4.718499 0.0000000 0.0000000
## 8693                               1 4.553877 0.0000000 0.0000000
## 8694                               2 5.010635 4.5643482 1.3862944
## 8695                               1 4.343805 0.0000000 0.0000000
## 8696                               1 4.234107 0.0000000 0.6931472
## 8697                               2 4.382027 0.6931472 0.0000000
## 8698                               1 5.164786 2.1972246 0.6931472
## 8699                               1 4.499810 1.0986123 0.0000000
## 8700                               1 4.248495 1.3862944 3.4011974
## 8701                               1 4.317488 0.6931472 1.7917595
## 8702                               1 4.110874 1.7917595 0.6931472
## 8703                               1 3.737670 2.6390573 0.0000000
## 8704                               7 5.857933 2.3025851 4.0943446
## 8705                               1 3.806662 3.9512437 1.3862944
## 8706                               1 4.317488 0.6931472 1.0986123
## 8707                               1 5.010635 0.6931472 0.6931472
## 8708                               2 4.276666 4.7957905 1.3862944
## 8709                               2 4.077537 5.2933048 0.0000000
## 8710                               1 4.499810 1.3862944 0.6931472
## 8711                               1 4.976734 1.3862944 0.6931472
## 8712                               1 3.806662 0.0000000 0.0000000
## 8713                               4 3.555348 4.1431347 1.0986123
## 8714                               1 5.010635 3.4657359 0.0000000
## 8715                               2 4.990433 4.5108595 1.3862944
## 8716                               2 5.204007 5.3981627 0.0000000
## 8717                               1 5.164786 5.1590553 1.0986123
## 8718                               1 5.521461 0.6931472 0.0000000
## 8719                               1 4.248495 1.6094379 0.0000000
## 8720                               1 4.317488 0.0000000 0.0000000
## 8721                               1 4.369448 3.0910425 0.0000000
## 8722                               3 3.555348 5.2522734 0.6931472
## 8723                               1 5.703782 1.3862944 1.0986123
## 8724                               7 4.454347 4.5108595 1.0986123
## 8725                               1 5.241747 2.6390573 0.0000000
## 8726                               1 4.248495 0.6931472 0.0000000
## 8727                               5 5.010635 4.3567088 0.0000000
## 8728                              52 5.068904 0.6931472 3.4011974
## 8729                               2 3.912023 0.6931472 0.0000000
## 8730                               1 4.941642 1.6094379 1.6094379
## 8731                               1 5.164786 1.6094379 0.0000000
## 8732                               1 4.276666 1.6094379 0.6931472
## 8733                               1 5.288267 1.3862944 1.3862944
## 8734                               1 5.192957 2.8332133 0.6931472
## 8735                               1 5.298317 2.4849066 1.3862944
## 8736                               2 5.393628 4.4773368 0.0000000
## 8737                               1 4.828314 2.1972246 0.0000000
## 8738                               1 5.703782 2.4849066 1.0986123
## 8739                               6 3.610918 2.5649494 3.4011974
## 8740                               1 4.094345 0.0000000 0.0000000
## 8741                               1 3.891820 0.0000000 2.3025851
## 8742                               1 4.976734 2.8903718 1.6094379
## 8743                               1 3.871201 1.6094379 0.0000000
## 8744                               3 5.030438 4.5108595 1.3862944
## 8745                               1 3.806662 1.0986123 0.0000000
## 8746                               3 5.010635 0.6931472 0.0000000
## 8747                               1 5.273000 4.7184989 0.0000000
## 8748                               3 4.499810 0.0000000 0.6931472
## 8749                               1 4.094345 0.0000000 0.0000000
## 8750                               1 4.976734 0.6931472 1.0986123
## 8751                               1 4.787492 3.5553481 0.6931472
## 8752                               1 4.709530 2.7080502 0.6931472
## 8753                               1 4.941642 0.0000000 1.6094379
## 8754                               2 4.094345 2.1972246 0.6931472
## 8755                              28 3.555348 1.7917595 2.6390573
## 8756                               3 4.532599 4.6051702 0.0000000
## 8757                               3 3.401197 1.0986123 0.0000000
## 8758                               1 4.094345 0.6931472 1.6094379
## 8759                               1 4.595120 0.0000000 1.6094379
## 8760                               2 5.347108 2.9957323 0.6931472
## 8761                               1 5.164786 0.6931472 1.0986123
## 8762                               3 3.091042 2.5649494 0.0000000
## 8763                               1 5.298317 3.8066625 1.7917595
## 8764                               1 4.787492 3.3672958 3.4011974
## 8765                               1 5.765191 2.1972246 1.3862944
## 8766                               1 3.806662 0.6931472 1.3862944
## 8767                               1 4.595120 0.0000000 1.6094379
## 8768                               1 6.109248 3.5553481 1.0986123
## 8769                               3 4.488636 3.3322045 1.6094379
## 8770                               4 4.174387 4.2626799 0.6931472
## 8771                               1 5.220356 2.0794415 1.0986123
## 8772                               5 5.472271 2.6390573 3.4011974
## 8773                               1 4.143135 1.3862944 0.0000000
## 8774                               1 5.010635 3.7612001 1.9459101
## 8775                               3 4.317488 4.5643482 0.0000000
## 8776                               1 6.214608 2.3025851 0.0000000
## 8777                               1 4.077537 4.7273878 1.0986123
## 8778                               1 4.499810 0.0000000 0.0000000
## 8779                               1 5.010635 0.0000000 1.6094379
## 8780                               1 4.248495 4.2484952 0.0000000
## 8781                               2 5.666427 5.1704840 0.6931472
## 8782                               1 5.501258 4.7449321 1.0986123
## 8783                               1 5.416100 0.6931472 1.3862944
## 8784                               1 5.003946 3.4965076 1.3862944
## 8785                               1 5.075174 1.9459101 0.6931472
## 8786                               1 4.248495 0.0000000 0.6931472
## 8787                               1 5.105945 4.7874917 1.0986123
## 8788                               1 5.010635 2.1972246 1.0986123
## 8789                              10 4.174387 2.3978953 0.0000000
## 8790                               2 5.164786 2.5649494 0.6931472
## 8791                               1 5.164786 4.5951199 1.3862944
## 8792                               2 4.499810 2.9444390 1.3862944
## 8793                               1 3.688879 0.6931472 1.9459101
## 8794                               1 5.135798 3.9702919 0.6931472
## 8795                               1 4.248495 2.0794415 1.0986123
## 8796                              43 3.912023 0.0000000 3.4011974
## 8797                               2 3.951244 5.1873858 0.0000000
## 8798                              43 3.850148 1.3862944 3.4011974
## 8799                               1 5.164786 3.5835189 1.3862944
## 8800                              43 3.850148 0.6931472 3.4011974
## 8801                              43 3.850148 1.0986123 3.4011974
## 8802                              43 3.850148 1.3862944 0.6931472
## 8803                               4 4.382027 5.0625950 0.6931472
## 8804                               1 4.955827 3.8712010 0.6931472
## 8805                               1 4.234107 1.0986123 1.9459101
## 8806                              13 4.127134 1.6094379 0.6931472
## 8807                              13 3.806662 0.0000000 0.0000000
## 8808                               1 4.317488 0.0000000 0.0000000
## 8809                               1 4.382027 2.3025851 1.0986123
## 8810                               1 4.499810 1.0986123 0.0000000
## 8811                               2 5.153292 2.4849066 3.4011974
## 8812                               1 4.605170 2.3025851 2.6390573
## 8813                               1 5.075174 4.9972123 1.6094379
## 8814                               3 4.753590 2.8332133 0.6931472
## 8815                               1 5.010635 2.3978953 1.3862944
## 8816                               1 4.644391 3.7376696 1.0986123
## 8817                               2 5.298317 1.7917595 0.6931472
## 8818                               1 4.382027 0.0000000 0.6931472
## 8819                               1 5.924256 2.7725887 3.4011974
## 8820                               1 3.828641 2.1972246 0.6931472
## 8821                               1 4.543295 3.3322045 0.0000000
## 8822                               1 4.521789 0.0000000 0.6931472
## 8823                               2 5.043425 4.3820266 1.6094379
## 8824                               1 4.248495 1.3862944 1.0986123
## 8825                               1 4.317488 0.6931472 0.0000000
## 8826                               1 5.010635 0.0000000 0.6931472
## 8827                               1 4.317488 0.0000000 0.0000000
## 8828                               1 4.976734 3.5553481 1.7917595
## 8829                               1 4.174387 0.6931472 0.0000000
## 8830                               1 5.273000 2.6390573 1.9459101
## 8831                               1 6.040255 1.0986123 0.0000000
## 8832                               2 6.214608 3.7841896 1.9459101
## 8833                               1 4.442651 1.3862944 0.6931472
## 8834                               1 4.605170 3.3672958 3.4011974
## 8835                               1 4.248495 1.6094379 1.0986123
## 8836                               1 6.052089 4.2195077 1.3862944
## 8837                               2 6.194405 0.0000000 1.0986123
## 8838                               1 4.905275 0.6931472 1.9459101
## 8839                               1 4.382027 1.3862944 0.0000000
## 8840                               1 4.499810 1.0986123 0.0000000
## 8841                               1 6.684612 3.0910425 3.4011974
## 8842                               2 4.248495 1.9459101 1.3862944
## 8843                               1 4.605170 1.3862944 1.0986123
## 8844                               2 4.317488 5.3230100 0.0000000
## 8845                               1 4.477337 1.7917595 1.0986123
## 8846                               1 3.912023 0.0000000 1.0986123
## 8847                               1 4.143135 4.6443909 0.6931472
## 8848                               1 3.912023 0.0000000 0.0000000
## 8849                               1 4.499810 0.6931472 1.6094379
## 8850                               1 4.442651 2.3025851 0.6931472
## 8851                               1 4.499810 3.4657359 0.6931472
## 8852                               1 4.317488 1.3862944 0.6931472
## 8853                               1 5.010635 0.0000000 0.6931472
## 8854                               1 3.637586 0.0000000 1.6094379
## 8855                               1 4.248495 0.0000000 1.0986123
## 8856                               1 4.174387 0.6931472 2.4849066
## 8857                               1 4.317488 2.4849066 2.3025851
## 8858                               2 4.094345 5.2149358 0.0000000
## 8859                               1 5.398163 4.5951199 1.0986123
## 8860                               1 6.214608 3.6635616 0.6931472
## 8861                              39 5.521461 0.6931472 3.4011974
## 8862                               1 5.476464 1.3862944 1.3862944
## 8863                               1 4.653960 1.6094379 3.4011974
## 8864                               1 3.912023 0.6931472 0.0000000
## 8865                               1 4.317488 1.3862944 1.0986123
## 8866                               1 4.682131 3.6888795 0.0000000
## 8867                               2 4.077537 2.3025851 0.6931472
## 8868                               1 5.003946 1.0986123 0.6931472
## 8869                               1 5.010635 2.9957323 0.0000000
## 8870                               1 4.779123 3.2958369 0.6931472
## 8871                               1 4.605170 5.2626902 0.6931472
## 8872                               1 4.442651 2.0794415 1.0986123
## 8873                               1 3.806662 0.0000000 0.0000000
## 8874                               1 5.686975 4.1431347 1.0986123
## 8875                               8 4.094345 4.7957905 0.6931472
## 8876                               1 4.094345 0.0000000 0.6931472
## 8877                              39 5.298317 1.6094379 3.4011974
## 8878                               1 4.382027 0.0000000 0.6931472
## 8879                               8 4.094345 4.5747110 0.6931472
## 8880                               1 3.912023 0.6931472 1.0986123
## 8881                               1 4.234107 3.1354942 1.0986123
## 8882                              21 4.812184 1.9459101 3.4011974
## 8883                               1 4.905275 5.3659760 0.0000000
## 8884                               1 5.991465 2.1972246 0.6931472
## 8885                               1 4.465908 1.0986123 1.0986123
## 8886                               1 4.595120 5.7333413 0.0000000
## 8887                               1 4.007333 3.6635616 0.6931472
## 8888                               1 5.416100 2.1972246 1.6094379
## 8889                               8 4.094345 4.5217886 0.6931472
## 8890                               1 5.700444 1.9459101 0.6931472
## 8891                               2 3.688879 3.1354942 2.9957323
## 8892                               1 4.787492 3.6635616 1.0986123
## 8893                               3 4.488636 4.9972123 0.0000000
## 8894                               1 5.010635 3.9512437 0.6931472
## 8895                               1 5.480639 0.6931472 1.0986123
## 8896                               2 3.583519 1.7917595 0.6931472
## 8897                               1 4.204693 0.0000000 0.0000000
## 8898                               1 4.941642 2.3978953 1.3862944
## 8899                               1 4.499810 5.0238805 0.6931472
## 8900                               8 4.094345 4.5951199 0.6931472
## 8901                               1 4.927254 5.4249500 0.0000000
## 8902                               1 4.564348 0.6931472 0.0000000
## 8903                               2 4.691348 4.6539604 0.6931472
## 8904                               1 4.905275 4.6634391 1.3862944
## 8905                               4 4.060443 1.9459101 3.4011974
## 8906                               1 4.174387 0.6931472 0.0000000
## 8907                               1 5.416100 0.6931472 1.0986123
## 8908                               1 4.867534 0.0000000 1.0986123
## 8909                               8 4.094345 4.6728288 0.6931472
## 8910                               1 5.347108 0.6931472 0.6931472
## 8911                               3 5.616771 3.3322045 1.7917595
## 8912                               1 5.164786 0.0000000 1.9459101
## 8913                               1 5.164786 1.7917595 0.0000000
## 8914                               1 3.761200 0.0000000 1.0986123
## 8915                               2 5.521461 0.6931472 1.0986123
## 8916                               1 4.369448 1.0986123 0.6931472
## 8917                               8 4.094345 4.5747110 0.6931472
## 8918                               3 4.605170 4.1108739 3.4011974
## 8919                               2 4.369448 0.6931472 0.6931472
## 8920                               2 5.652489 4.1896547 1.0986123
## 8921                               1 5.298317 4.2484952 0.6931472
## 8922                               1 5.010635 3.2188758 0.6931472
## 8923                               1 5.192957 2.0794415 0.0000000
## 8924                               1 5.010635 0.0000000 0.0000000
## 8925                               1 4.060443 1.6094379 0.0000000
## 8926                               1 4.941642 1.0986123 1.9459101
## 8927                               1 4.382027 0.6931472 0.0000000
## 8928                               1 4.605170 1.6094379 2.7080502
## 8929                               1 5.298317 2.1972246 1.0986123
## 8930                               1 5.164786 2.3978953 2.3978953
## 8931                               3 5.521461 4.6539604 0.6931472
## 8932                               7 4.304065 3.0910425 0.6931472
## 8933                               8 4.094345 4.5951199 0.6931472
## 8934                               1 4.094345 0.6931472 0.0000000
## 8935                               1 4.094345 0.6931472 0.0000000
## 8936                               1 5.010635 1.6094379 0.6931472
## 8937                               1 4.248495 0.0000000 0.6931472
## 8938                               1 4.584967 4.7957905 2.6390573
## 8939                               1 4.682131 3.0445224 1.3862944
## 8940                               1 4.382027 1.0986123 1.3862944
## 8941                               1 4.094345 3.8066625 1.0986123
## 8942                               2 5.393628 1.6094379 1.0986123
## 8943                               1 4.941642 2.7725887 1.6094379
## 8944                               1 7.090077 2.1972246 1.0986123
## 8945                               1 3.737670 1.0986123 0.6931472
## 8946                               1 4.787492 4.5217886 0.6931472
## 8947                               1 4.234107 2.3025851 1.6094379
## 8948                               2 4.442651 2.6390573 0.0000000
## 8949                               2 4.317488 5.4205350 0.6931472
## 8950                               1 7.003065 0.0000000 0.0000000
## 8951                               1 4.094345 1.0986123 0.6931472
## 8952                               2 5.075174 1.0986123 1.0986123
## 8953                               1 4.787492 0.0000000 0.0000000
## 8954                               1 4.553877 4.5849675 0.0000000
## 8955                               1 5.192957 0.0000000 0.0000000
## 8956                               1 5.135798 1.7917595 2.5649494
## 8957                               1 3.663562 0.0000000 2.6390573
## 8958                               7 4.317488 3.6375862 0.0000000
## 8959                               1 5.075174 2.6390573 0.6931472
## 8960                               2 4.564348 4.7361984 0.6931472
## 8961                               1 3.912023 4.5325995 0.6931472
## 8962                               1 4.976734 2.0794415 1.6094379
## 8963                               1 4.605170 0.0000000 1.0986123
## 8964                               3 4.553877 5.0304379 0.6931472
## 8965                               3 4.653960 5.4467374 0.6931472
## 8966                               2 3.555348 2.3025851 1.7917595
## 8967                               1 4.382027 0.0000000 0.0000000
## 8968                               1 4.787492 2.3978953 0.6931472
## 8969                               1 4.867534 2.9957323 1.0986123
## 8970                               1 4.262680 3.7376696 1.9459101
## 8971                               1 3.912023 1.6094379 1.0986123
## 8972                               3 4.276666 5.0172798 0.6931472
## 8973                               6 4.595120 3.0445224 0.0000000
## 8974                               1 4.700480 0.6931472 0.0000000
## 8975                               1 4.770685 0.6931472 0.0000000
## 8976                               1 4.317488 1.6094379 0.0000000
## 8977                               1 5.416100 5.0689042 1.0986123
## 8978                               1 4.382027 0.6931472 0.0000000
## 8979                               1 4.672829 4.2904594 0.0000000
## 8980                               1 6.214608 2.1972246 3.2580965
## 8981                               2 5.298317 4.7874917 0.6931472
## 8982                               1 3.737670 3.2188758 0.6931472
## 8983                               1 5.857933 1.0986123 1.3862944
## 8984                               2 5.075174 3.9702919 0.6931472
## 8985                               2 4.488636 0.6931472 0.6931472
## 8986                               1 5.010635 2.3025851 3.4011974
## 8987                               1 4.787492 2.0794415 0.6931472
## 8988                               2 4.290459 2.3025851 0.0000000
## 8989                               2 4.290459 3.2958369 0.0000000
## 8990                               2 4.941642 1.0986123 1.0986123
## 8991                               1 4.828314 1.3862944 0.6931472
## 8992                               1 4.941642 2.1972246 0.0000000
## 8993                               1 3.871201 3.0910425 1.3862944
## 8994                               2 5.991465 2.7080502 0.0000000
## 8995                               1 5.105945 4.2195077 1.0986123
## 8996                               1 4.248495 0.0000000 0.6931472
## 8997                               1 3.951244 2.0794415 2.3025851
## 8998                               1 5.953243 1.0986123 1.0986123
## 8999                               1 3.806662 0.0000000 0.0000000
## 9000                               1 5.616771 4.3438054 1.0986123
## 9001                               1 4.905275 5.5214609 1.0986123
## 9002                               1 5.857933 1.6094379 0.6931472
## 9003                               5 4.605170 3.0910425 0.0000000
## 9004                               1 4.605170 1.3862944 0.6931472
## 9005                               1 4.905275 0.6931472 1.3862944
## 9006                              14 4.744932 2.4849066 3.4011974
## 9007                               1 5.010635 0.6931472 1.7917595
## 9008                               1 4.094345 1.0986123 0.0000000
## 9009                               1 4.595120 4.4426513 0.6931472
## 9010                               1 5.192957 4.5538769 1.6094379
## 9011                               1 4.553877 2.3978953 1.6094379
## 9012                              13 4.094345 5.2832037 0.0000000
## 9013                               1 4.605170 0.6931472 0.0000000
## 9014                               1 5.521461 3.2580965 0.6931472
## 9015                               1 4.976734 1.0986123 1.0986123
## 9016                               1 5.521461 3.9889840 0.0000000
## 9017                               1 5.010635 2.0794415 0.6931472
## 9018                               1 5.991465 2.7080502 1.0986123
## 9019                               1 4.418841 2.6390573 1.0986123
## 9020                               1 5.010635 2.0794415 2.5649494
## 9021                               1 7.085901 4.6913479 1.0986123
## 9022                               2 4.219508 2.6390573 1.6094379
## 9023                               2 4.248495 5.1532916 0.6931472
## 9024                               2 4.174387 1.0986123 0.0000000
## 9025                               1 3.806662 0.6931472 0.0000000
## 9026                               1 4.317488 3.4657359 0.0000000
## 9027                               1 4.174387 4.3820266 0.6931472
## 9028                               1 5.135798 3.5835189 1.0986123
## 9029                               1 4.605170 2.3978953 1.6094379
## 9030                               2 4.174387 1.9459101 0.6931472
## 9031                               2 5.634790 3.1780538 0.6931472
## 9032                               1 5.010635 2.1972246 0.6931472
## 9033                               1 5.521461 2.8332133 1.7917595
## 9034                              39 5.521461 1.0986123 4.4998097
## 9035                               1 4.174387 5.6594822 0.0000000
## 9036                               1 4.867534 1.3862944 1.6094379
## 9037                               2 5.926926 2.9444390 1.0986123
## 9038                               1 3.871201 4.0775374 0.0000000
## 9039                               1 4.382027 0.6931472 2.3025851
## 9040                               1 4.700480 4.8903491 0.0000000
## 9041                               2 4.276666 2.4849066 1.3862944
## 9042                               1 3.891820 2.7725887 0.0000000
## 9043                               1 5.521461 1.0986123 0.0000000
## 9044                               1 4.787492 4.8520303 0.6931472
## 9045                               1 5.480639 3.4965076 0.0000000
## 9046                               1 4.343805 0.6931472 2.7080502
## 9047                               1 5.220356 2.8332133 1.9459101
## 9048                               1 4.605170 0.6931472 0.0000000
## 9049                               1 3.912023 0.0000000 0.0000000
## 9050                               1 3.912023 0.0000000 0.0000000
## 9051                               1 4.465908 1.0986123 0.0000000
## 9052                               1 3.401197 1.7917595 0.0000000
## 9053                               2 4.174387 2.3978953 0.0000000
## 9054                               1 4.691348 4.3307333 0.0000000
## 9055                               5 5.023881 3.6635616 0.0000000
## 9056                               1 5.010635 3.3322045 1.0986123
## 9057                               1 5.703782 3.4011974 1.0986123
## 9058                               1 4.007333 2.7080502 4.4998097
## 9059                               2 4.248495 0.0000000 2.3025851
## 9060                               1 4.094345 1.3862944 0.0000000
## 9061                               1 5.010635 0.0000000 0.0000000
## 9062                               8 4.779123 5.1416636 0.0000000
## 9063                               1 4.304065 1.0986123 0.0000000
## 9064                               1 5.521461 1.3862944 1.0986123
## 9065                               1 5.521461 3.0910425 0.0000000
## 9066                               1 4.867534 1.3862944 1.0986123
## 9067                               5 5.093750 3.4011974 0.0000000
## 9068                               1 4.828314 0.6931472 1.0986123
## 9069                               1 5.003946 1.9459101 0.0000000
## 9070                               1 4.905275 3.9889840 1.3862944
## 9071                             121 4.859812 1.0986123 3.4011974
## 9072                               1 4.465908 5.0172798 1.0986123
## 9073                               1 4.007333 0.6931472 1.3862944
## 9074                               2 3.988984 4.2904594 1.6094379
## 9075                               1 4.700480 1.7917595 1.3862944
## 9076                               1 5.521461 1.0986123 0.0000000
## 9077                               1 5.010635 2.7080502 1.3862944
## 9078                               1 3.688879 0.0000000 1.6094379
## 9079                               2 5.686975 3.4657359 1.0986123
## 9080                               1 4.867534 1.9459101 1.0986123
## 9081                               7 4.369448 5.6903595 0.0000000
## 9082                               7 4.234107 5.6733233 0.0000000
## 9083                               7 4.369448 5.6489742 0.0000000
## 9084                               1 4.990433 3.2958369 1.9459101
## 9085                               7 4.369448 5.6733233 0.0000000
## 9086                               7 4.234107 5.7899602 0.0000000
## 9087                               2 4.248495 4.2046926 0.6931472
## 9088                               1 4.779123 4.7449321 1.3862944
## 9089                               1 3.891820 4.6728288 0.0000000
## 9090                               1 4.882802 4.3944492 0.6931472
## 9091                               1 5.043425 2.0794415 3.4339872
## 9092                               1 5.187386 2.3025851 0.6931472
## 9093                               2 4.644391 2.7080502 0.6931472
## 9094                               1 3.688879 2.1972246 0.6931472
## 9095                               1 4.382027 2.7725887 1.0986123
## 9096                               2 4.488636 4.4543473 0.6931472
## 9097                               2 6.906755 4.9487599 0.6931472
## 9098                               1 4.442651 0.6931472 3.2188758
## 9099                               1 4.317488 0.0000000 2.3025851
## 9100                               2 4.077537 4.2766661 1.7917595
## 9101                               1 3.806662 0.6931472 1.0986123
## 9102                               1 5.857933 4.3040651 1.0986123
## 9103                               3 5.978886 4.0943446 1.0986123
## 9104                               1 5.192957 2.9957323 1.3862944
## 9105                               1 3.828641 0.6931472 1.9459101
## 9106                             121 5.241747 1.3862944 3.4011974
## 9107                               1 5.273000 4.7957905 1.0986123
## 9108                               2 3.663562 2.6390573 1.3862944
## 9109                               1 4.174387 0.0000000 0.0000000
## 9110                               1 4.941642 2.8903718 1.3862944
## 9111                               3 4.174387 1.6094379 0.6931472
## 9112                               1 4.770685 0.0000000 0.0000000
## 9113                              11 5.521461 4.8978398 0.0000000
## 9114                               3 4.007333 3.4657359 1.6094379
## 9115                               1 5.043425 2.1972246 3.4011974
## 9116                              13 4.442651 5.4026774 0.0000000
## 9117                               1 5.123964 0.6931472 0.0000000
## 9118                               1 4.700480 2.3025851 0.6931472
## 9119                               1 4.828314 0.6931472 0.6931472
## 9120                               1 4.828314 1.0986123 1.0986123
## 9121                               1 4.744932 0.0000000 0.0000000
## 9122                               1 4.867534 2.7080502 5.1929569
## 9123                               1 4.158883 0.0000000 1.9459101
## 9124                               1 4.941642 0.6931472 0.6931472
## 9125                               3 5.105945 4.4543473 1.9459101
## 9126                               1 5.075174 0.0000000 0.6931472
## 9127                               1 4.248495 3.6888795 0.0000000
## 9128                               3 4.605170 4.0775374 0.0000000
## 9129                               1 5.416100 0.6931472 0.6931472
## 9130                               1 4.248495 2.5649494 0.6931472
## 9131                               1 4.094345 0.6931472 0.0000000
## 9132                               1 4.787492 0.6931472 0.0000000
## 9133                               1 3.912023 1.0986123 0.0000000
## 9134                               3 4.317488 4.7361984 0.0000000
## 9135                               3 4.317488 4.6249728 0.0000000
## 9136                              18 3.610918 2.4849066 2.7080502
## 9137                               1 5.416100 2.1972246 3.3672958
## 9138                               1 5.521461 0.6931472 3.4339872
## 9139                               2 4.828314 4.5217886 1.0986123
## 9140                               1 5.135798 1.0986123 0.0000000
## 9141                               1 4.700480 4.3944492 1.3862944
## 9142                               1 4.605170 1.6094379 1.7917595
## 9143                               1 3.912023 1.0986123 2.3025851
## 9144                               1 5.323010 3.8501476 1.0986123
## 9145                               3 4.499810 2.8332133 1.0986123
## 9146                               2 3.891820 0.0000000 0.0000000
## 9147                               1 4.859812 1.6094379 1.0986123
## 9148                               1 5.105945 0.6931472 1.0986123
## 9149                               1 4.634729 2.6390573 1.9459101
## 9150                               1 4.574711 4.6051702 0.6931472
## 9151                               1 3.891820 2.0794415 0.0000000
## 9152                               1 5.501258 4.0073332 1.3862944
## 9153                               1 3.951244 1.3862944 0.0000000
## 9154                               1 5.634790 0.0000000 0.0000000
## 9155                               1 4.127134 1.6094379 1.0986123
## 9156                               1 4.859812 1.7917595 0.0000000
## 9157                               1 5.164786 2.3025851 0.6931472
## 9158                               1 4.382027 3.4657359 1.3862944
## 9159                               1 4.499810 2.6390573 1.0986123
## 9160                               1 4.343805 0.0000000 1.3862944
## 9161                               1 4.787492 3.9318256 3.4011974
## 9162                               1 4.499810 1.6094379 0.0000000
## 9163                               1 5.192957 0.0000000 0.6931472
## 9164                               1 4.605170 3.7612001 3.4011974
## 9165                               1 5.068904 5.1357984 1.0986123
## 9166                               1 5.298317 4.6151205 0.0000000
## 9167                               4 4.488636 1.6094379 1.0986123
## 9168                               1 5.298317 1.0986123 0.6931472
## 9169                               1 4.276666 1.6094379 0.6931472
## 9170                               1 5.105945 1.7917595 3.4011974
## 9171                               1 4.605170 2.8903718 0.0000000
## 9172                               1 4.499810 2.0794415 2.3025851
## 9173                               1 4.787492 1.0986123 1.3862944
## 9174                               1 5.220356 5.2983174 1.0986123
## 9175                               1 5.068904 4.8362819 0.0000000
## 9176                               1 4.248495 2.9444390 0.0000000
## 9177                               1 4.382027 1.3862944 1.0986123
## 9178                               1 5.393628 1.0986123 0.6931472
## 9179                               1 4.488636 1.0986123 1.3862944
## 9180                               1 4.905275 0.6931472 1.9459101
## 9181                               1 5.010635 2.5649494 0.6931472
## 9182                               2 5.105945 4.8598124 0.6931472
## 9183                               5 3.828641 6.2971093 0.0000000
## 9184                               7 3.912023 3.1780538 0.6931472
## 9185                               1 4.605170 0.0000000 0.0000000
## 9186                               1 5.298317 0.0000000 0.6931472
## 9187                               2 4.605170 0.0000000 0.0000000
## 9188                               2 4.394449 0.0000000 0.0000000
## 9189                               1 5.010635 4.7095302 1.3862944
## 9190                               1 4.094345 1.0986123 0.6931472
## 9191                               1 5.476464 4.9904326 1.6094379
## 9192                               2 4.248495 2.5649494 1.9459101
## 9193                               2 3.806662 1.9459101 0.6931472
## 9194                               1 5.298317 4.7273878 0.6931472
## 9195                               1 3.806662 0.0000000 0.0000000
## 9196                               1 3.806662 1.9459101 0.6931472
## 9197                               3 4.700480 1.6094379 0.0000000
## 9198                               1 5.521461 3.8712010 0.6931472
## 9199                               1 4.787492 0.6931472 0.0000000
## 9200                             121 5.517453 0.6931472 3.4011974
## 9201                               1 4.382027 0.6931472 0.6931472
## 9202                               1 4.820282 2.6390573 0.6931472
## 9203                               1 5.164786 0.6931472 1.0986123
## 9204                               1 4.744932 3.2958369 1.0986123
## 9205                               1 4.595120 2.3978953 1.9459101
## 9206                               1 4.317488 0.0000000 1.9459101
## 9207                               1 4.941642 1.0986123 1.9459101
## 9208                               8 4.094345 4.6634391 0.6931472
## 9209                               2 4.787492 2.3978953 0.6931472
## 9210                               2 5.010635 2.5649494 0.6931472
## 9211                               1 5.010635 2.3978953 1.6094379
## 9212                               1 3.891820 2.1972246 2.6390573
## 9213                               1 4.700480 0.6931472 0.6931472
## 9214                               1 4.174387 0.0000000 1.7917595
## 9215                               1 5.247024 0.0000000 2.5649494
## 9216                               1 4.828314 0.0000000 0.6931472
## 9217                               1 4.521789 3.0445224 0.6931472
## 9218                               1 5.783825 2.1972246 1.6094379
## 9219                               1 4.787492 1.0986123 1.3862944
## 9220                               1 4.094345 0.0000000 1.6094379
## 9221                               1 5.164786 3.1780538 1.0986123
## 9222                               1 5.298317 4.9904326 0.6931472
## 9223                               1 5.192957 4.9836066 0.0000000
## 9224                              13 4.094345 5.2257467 0.0000000
## 9225                               1 4.553877 4.6051702 1.0986123
## 9226                               4 5.438079 5.3132060 0.6931472
## 9227                               2 3.806662 0.0000000 0.6931472
## 9228                               1 3.688879 0.0000000 0.6931472
## 9229                               1 4.553877 1.9459101 0.6931472
## 9230                               4 3.737670 3.5263605 0.6931472
## 9231                               1 4.248495 5.5412635 0.6931472
## 9232                              11 5.293305 2.9957323 0.0000000
## 9233                               1 4.174387 5.0562458 1.0986123
## 9234                               1 5.247024 1.3862944 3.4011974
## 9235                               1 5.298317 4.9836066 0.6931472
## 9236                               1 4.317488 3.0445224 1.0986123
## 9237                               1 4.584967 3.4339872 0.0000000
## 9238                               1 4.787492 4.3567088 0.6931472
## 9239                               5 4.867534 2.1972246 1.3862944
## 9240                               1 4.828314 0.6931472 3.4339872
## 9241                               1 4.007333 1.3862944 1.6094379
## 9242                               2 4.219508 2.0794415 1.0986123
## 9243                               1 4.941642 0.6931472 0.0000000
## 9244                               1 5.075174 1.6094379 1.3862944
## 9245                               1 4.343805 0.0000000 1.9459101
## 9246                               1 4.499810 0.0000000 0.0000000
## 9247                               1 5.337538 0.0000000 2.5649494
## 9248                               1 5.370638 4.2766661 1.0986123
## 9249                               1 4.605170 3.0445224 0.6931472
## 9250                               1 3.688879 2.1972246 0.6931472
## 9251                               1 4.077537 4.4426513 0.0000000
## 9252                               1 5.783825 3.7841896 0.6931472
## 9253                               1 4.584967 5.3033049 0.0000000
## 9254                               2 4.234107 2.5649494 1.0986123
## 9255                               1 4.382027 0.0000000 1.0986123
## 9256                              10 3.663562 3.8066625 0.0000000
## 9257                               1 4.248495 1.9459101 0.6931472
## 9258                               1 5.267858 4.7621739 1.0986123
## 9259                               2 4.499810 4.5217886 1.6094379
## 9260                              10 3.663562 4.2484952 0.0000000
## 9261                               1 4.442651 4.2626799 0.6931472
## 9262                               1 6.061457 1.3862944 0.6931472
## 9263                               3 3.737670 5.0814044 0.0000000
## 9264                               1 5.298317 0.0000000 0.6931472
## 9265                               1 6.551080 3.4339872 0.6931472
## 9266                               1 3.912023 1.3862944 0.0000000
## 9267                               1 4.605170 0.0000000 0.0000000
## 9268                               1 5.010635 4.1108739 1.3862944
## 9269                               1 4.605170 4.4426513 1.6094379
## 9270                               2 4.442651 3.2580965 3.4011974
## 9271                               1 5.480639 4.2766661 0.0000000
## 9272                               1 4.905275 0.6931472 1.9459101
## 9273                               1 4.905275 1.0986123 2.6390573
## 9274                               1 4.369448 1.0986123 0.0000000
## 9275                               1 5.010635 2.3025851 0.6931472
## 9276                               1 4.934474 4.4308168 1.3862944
## 9277                               1 3.637586 0.6931472 0.6931472
## 9278                               1 4.605170 4.1743873 1.3862944
## 9279                               1 5.135798 1.7917595 1.3862944
## 9280                               1 4.248495 4.0430513 0.6931472
## 9281                               2 5.293305 4.6728288 1.0986123
## 9282                              10 3.663562 4.1271344 0.0000000
## 9283                              10 3.663562 4.2904594 0.0000000
## 9284                               2 4.317488 2.5649494 0.6931472
## 9285                               2 4.595120 3.4011974 2.9957323
## 9286                               2 4.605170 2.7080502 2.7080502
## 9287                               1 5.416100 3.6375862 1.0986123
## 9288                               1 4.595120 4.2766661 0.6931472
## 9289                               2 6.150603 1.9459101 2.1972246
## 9290                               1 4.204693 1.7917595 4.0943446
## 9291                               1 5.192957 2.8903718 1.0986123
## 9292                               2 4.605170 4.4659081 0.0000000
## 9293                               1 4.828314 2.0794415 1.0986123
## 9294                               1 4.442651 3.2188758 1.0986123
## 9295                               1 5.164786 1.0986123 0.6931472
## 9296                               2 4.174387 2.8332133 1.6094379
## 9297                               1 3.951244 1.7917595 0.6931472
## 9298                               1 4.442651 1.0986123 1.0986123
## 9299                               1 4.595120 4.4067192 0.0000000
## 9300                               5 4.867534 1.0986123 1.3862944
## 9301                               1 5.241747 3.6635616 0.6931472
## 9302                               2 4.795791 2.7725887 0.6931472
## 9303                               1 5.010635 1.3862944 0.0000000
## 9304                               1 5.135798 0.0000000 0.0000000
## 9305                               1 4.248495 2.3978953 0.6931472
## 9306                               1 4.382027 0.0000000 1.6094379
## 9307                               1 5.159055 2.3978953 1.0986123
## 9308                               4 4.488636 1.6094379 0.0000000
## 9309                               1 4.691348 1.3862944 1.0986123
## 9310                               1 4.605170 3.2580965 1.3862944
## 9311                               2 4.382027 1.6094379 1.6094379
## 9312                               4 3.713572 2.7725887 1.9459101
## 9313                               1 5.438079 3.1354942 2.0794415
## 9314                               5 3.806662 4.8362819 0.0000000
## 9315                               1 4.828314 4.3820266 0.6931472
## 9316                               1 5.003946 0.0000000 0.6931472
## 9317                               5 4.143135 3.6888795 1.3862944
## 9318                               1 4.094345 1.7917595 1.0986123
## 9319                               8 4.043051 2.8332133 1.0986123
## 9320                               1 5.075174 4.0775374 0.6931472
## 9321                               3 5.099866 2.3025851 0.0000000
## 9322                               2 5.521461 2.3025851 0.6931472
## 9323                               1 5.267858 3.3672958 1.6094379
## 9324                               1 5.323010 4.4308168 1.0986123
## 9325                               5 4.859812 1.6094379 1.3862944
## 9326                               1 5.010635 2.7725887 0.6931472
## 9327                               2 4.317488 5.0751738 1.0986123
## 9328                               5 3.806662 4.9052748 0.0000000
## 9329                               1 4.174387 2.1972246 0.6931472
## 9330                               1 5.521461 2.5649494 0.0000000
## 9331                               1 5.220356 0.0000000 0.0000000
## 9332                               1 5.991465 2.3025851 0.6931472
## 9333                               1 4.828314 5.1474945 0.0000000
## 9334                               1 5.164786 1.6094379 0.0000000
## 9335                               1 5.703782 4.2484952 1.0986123
## 9336                             121 5.517453 0.0000000 3.4011974
## 9337                             121 5.293305 1.0986123 3.4011974
## 9338                               1 5.192957 0.6931472 1.3862944
## 9339                               1 4.094345 3.5263605 1.0986123
## 9340                               1 4.007333 0.6931472 1.9459101
## 9341                               1 4.905275 4.8598124 0.6931472
## 9342                               1 4.499810 1.3862944 0.6931472
## 9343                               1 4.867534 0.0000000 1.3862944
## 9344                               1 4.442651 3.6109179 1.0986123
## 9345                               1 5.010635 1.0986123 0.6931472
## 9346                               1 4.127134 4.2904594 0.0000000
## 9347                               3 5.043425 5.2364420 0.6931472
## 9348                               1 3.688879 1.0986123 0.6931472
## 9349                               2 4.941642 3.5553481 0.6931472
## 9350                               5 3.912023 1.6094379 0.0000000
## 9351                               1 5.521461 0.0000000 0.6931472
## 9352                               1 4.248495 0.0000000 1.9459101
## 9353                               1 5.075174 1.6094379 1.6094379
## 9354                               1 4.356709 4.7361984 0.6931472
## 9355                               1 4.934474 2.0794415 1.3862944
## 9356                               1 3.912023 1.3862944 1.6094379
## 9357                               1 4.976734 3.4339872 0.6931472
## 9358                               4 4.007333 4.4308168 0.6931472
## 9359                               1 5.370638 0.0000000 1.6094379
## 9360                               2 4.787492 2.1972246 0.6931472
## 9361                               1 5.075174 2.1972246 1.0986123
## 9362                               1 4.382027 4.9904326 0.6931472
## 9363                               1 5.010635 1.7917595 0.6931472
## 9364                               1 4.700480 0.6931472 0.0000000
## 9365                               1 5.886104 1.6094379 1.3862944
## 9366                               3 5.476464 0.6931472 1.6094379
## 9367                               1 3.688879 1.0986123 1.3862944
## 9368                               1 4.094345 0.6931472 1.6094379
## 9369                               1 4.465908 2.3978953 0.6931472
## 9370                               1 4.779123 1.3862944 1.7917595
## 9371                               1 4.234107 2.1972246 1.6094379
## 9372                               2 3.912023 3.6375862 0.0000000
## 9373                               1 5.298317 3.2958369 2.3025851
## 9374                               1 4.174387 5.3082677 0.0000000
## 9375                               1 4.356709 0.0000000 0.6931472
## 9376                               1 5.010635 1.3862944 1.3862944
## 9377                               1 4.595120 5.1059455 0.6931472
## 9378                               1 4.941642 4.2626799 0.0000000
## 9379                               1 6.214608 0.0000000 0.0000000
## 9380                               1 4.812184 4.9487599 1.0986123
## 9381                               5 6.025866 1.6094379 2.7725887
## 9382                               5 4.828314 2.5649494 1.3862944
## 9383                               1 5.700444 3.2188758 0.6931472
## 9384                               1 4.007333 5.3890717 1.0986123
## 9385                               1 4.007333 0.6931472 1.0986123
## 9386                               1 4.174387 1.0986123 1.0986123
## 9387                               1 5.010635 2.3978953 1.6094379
## 9388                               1 4.369448 1.6094379 0.0000000
## 9389                               1 4.820282 4.6249728 1.0986123
## 9390                               1 4.442651 3.5835189 0.6931472
## 9391                               3 4.605170 1.7917595 1.0986123
## 9392                               2 4.406719 2.0794415 1.3862944
## 9393                               2 4.077537 3.9318256 1.3862944
## 9394                               1 4.317488 1.6094379 0.0000000
## 9395                               1 4.174387 0.6931472 0.0000000
## 9396                               1 4.174387 2.4849066 0.6931472
## 9397                               1 4.691348 2.3025851 1.0986123
## 9398                               1 4.077537 5.0172798 0.0000000
## 9399                               1 5.703782 1.9459101 1.3862944
## 9400                               1 4.905275 2.4849066 1.7917595
## 9401                               1 4.700480 0.0000000 0.6931472
## 9402                               1 5.703782 0.0000000 0.6931472
## 9403                               1 5.220356 1.9459101 1.6094379
## 9404                               1 3.555348 3.2580965 1.7917595
## 9405                               1 4.499810 0.6931472 0.6931472
## 9406                               2 3.912023 5.3423343 0.0000000
## 9407                               1 4.094345 2.3978953 1.9459101
## 9408                               1 4.248495 0.0000000 1.0986123
## 9409                               1 4.867534 1.0986123 0.6931472
## 9410                               3 3.332205 4.5849675 0.6931472
## 9411                               1 4.700480 2.3025851 1.0986123
## 9412                               1 4.248495 1.0986123 0.0000000
## 9413                               1 5.298317 1.9459101 0.6931472
## 9414                               1 4.499810 4.2626799 0.6931472
## 9415                               1 4.934474 1.0986123 1.6094379
## 9416                               1 5.886104 2.5649494 0.0000000
## 9417                               1 5.220356 2.7080502 1.3862944
## 9418                               2 4.605170 0.6931472 0.0000000
## 9419                               1 5.273000 4.2046926 1.0986123
## 9420                               1 5.459586 1.3862944 1.0986123
## 9421                               2 5.010635 4.6728288 1.0986123
## 9422                               2 4.248495 0.0000000 0.6931472
## 9423                               2 4.553877 0.6931472 0.6931472
## 9424                               1 6.109248 2.7080502 1.7917595
## 9425                               1 4.605170 2.1972246 0.0000000
## 9426                               1 5.075174 0.0000000 0.0000000
## 9427                               1 4.174387 2.1972246 0.0000000
## 9428                               1 4.644391 5.1119878 0.6931472
## 9429                               1 4.094345 2.4849066 0.6931472
## 9430                               4 5.247024 4.8978398 0.6931472
## 9431                               1 4.007333 2.8903718 1.0986123
## 9432                               3 4.382027 3.8066625 1.9459101
## 9433                               1 4.174387 3.6635616 0.6931472
## 9434                               1 5.459586 2.9957323 0.6931472
## 9435                               1 5.323010 1.7917595 0.6931472
## 9436                               1 4.691348 0.0000000 1.0986123
## 9437                               1 4.442651 2.4849066 0.6931472
## 9438                               1 4.382027 5.1298987 0.0000000
## 9439                               1 4.787492 1.3862944 1.0986123
## 9440                               1 4.867534 0.0000000 0.0000000
## 9441                               1 5.247024 3.8286414 1.3862944
## 9442                               1 4.595120 0.6931472 1.3862944
## 9443                               2 3.951244 1.0986123 1.3862944
## 9444                               2 4.700480 1.6094379 1.3862944
## 9445                               2 4.595120 0.0000000 1.0986123
## 9446                               1 4.919981 5.0937502 0.0000000
## 9447                               1 4.442651 0.6931472 1.6094379
## 9448                               1 5.003946 1.0986123 2.3025851
## 9449                               1 4.820282 2.5649494 0.6931472
## 9450                               1 4.828314 3.1354942 0.6931472
## 9451                               1 4.248495 5.3565863 0.0000000
## 9452                               5 4.595120 1.7917595 0.0000000
## 9453                               5 4.691348 0.6931472 0.0000000
## 9454                               3 5.459586 3.3322045 0.0000000
## 9455                               1 4.553877 2.9957323 0.6931472
## 9456                               4 5.521461 2.0794415 0.6931472
## 9457                               2 4.553877 5.0238805 0.0000000
## 9458                               2 4.442651 4.2626799 0.0000000
## 9459                               1 5.247024 1.3862944 1.3862944
## 9460                               2 4.828314 0.6931472 0.0000000
## 9461                               2 4.828314 2.9957323 0.6931472
## 9462                               5 5.924256 3.4339872 0.0000000
## 9463                               1 5.075174 0.6931472 0.6931472
## 9464                               1 4.248495 5.1416636 0.6931472
## 9465                               1 4.007333 3.8501476 0.0000000
## 9466                               1 4.605170 1.9459101 0.0000000
## 9467                               3 4.553877 4.0943446 0.0000000
## 9468                               7 5.521461 2.0794415 3.4011974
## 9469                               1 4.553877 0.0000000 0.0000000
## 9470                               2 4.488636 2.1972246 0.6931472
## 9471                               1 5.652489 2.0794415 1.9459101
## 9472                               1 4.844187 0.6931472 0.6931472
## 9473                               1 5.416100 0.0000000 3.4011974
## 9474                               1 5.010635 0.0000000 1.3862944
## 9475                               1 3.912023 0.6931472 0.0000000
## 9476                               2 4.094345 0.0000000 0.0000000
## 9477                               1 5.616771 1.7917595 1.9459101
## 9478                               1 4.174387 2.0794415 0.0000000
## 9479                               1 4.382027 5.3706380 0.0000000
## 9480                               2 4.867534 0.6931472 1.6094379
## 9481                               1 4.174387 1.6094379 0.0000000
## 9482                               1 4.317488 0.0000000 0.6931472
## 9483                               4 5.298317 3.9512437 0.0000000
## 9484                               1 3.688879 0.6931472 1.3862944
## 9485                               1 4.219508 2.1972246 0.6931472
## 9486                               1 4.867534 2.7080502 1.0986123
## 9487                               2 4.905275 4.3694479 1.0986123
## 9488                               2 5.105945 3.2188758 1.6094379
## 9489                               1 5.521461 0.6931472 0.0000000
## 9490                               1 3.951244 0.0000000 0.0000000
## 9491                               1 5.135798 0.0000000 0.6931472
## 9492                               1 4.174387 0.6931472 1.0986123
## 9493                               1 4.382027 3.5263605 1.0986123
## 9494                               1 4.867534 1.6094379 0.6931472
## 9495                               1 4.941642 0.6931472 1.9459101
## 9496                               1 5.298317 0.6931472 0.6931472
## 9497                               1 4.007333 2.6390573 0.0000000
## 9498                               1 5.164786 0.0000000 0.6931472
## 9499                               1 4.595120 1.3862944 0.6931472
## 9500                               1 5.298317 1.3862944 0.0000000
## 9501                               1 4.317488 4.4543473 1.3862944
## 9502                               1 4.499810 1.9459101 1.7917595
## 9503                               1 3.931826 2.4849066 0.0000000
## 9504                               1 4.127134 0.0000000 1.6094379
## 9505                               1 4.499810 0.0000000 0.0000000
## 9506                               1 3.806662 0.0000000 1.0986123
## 9507                               1 4.691348 1.9459101 0.0000000
## 9508                               1 4.605170 4.5849675 1.0986123
## 9509                               1 5.298317 4.1431347 1.0986123
## 9510                               1 5.003946 4.4543473 1.0986123
## 9511                               1 4.007333 3.3672958 1.6094379
## 9512                               1 4.248495 0.0000000 0.0000000
## 9513                               4 3.367296 3.7135721 2.0794415
## 9514                               1 5.273000 4.5432948 1.6094379
## 9515                               1 5.393628 0.6931472 0.0000000
## 9516                               2 4.382027 3.4011974 1.6094379
## 9517                               1 4.700480 1.6094379 0.0000000
## 9518                               3 4.248495 3.4339872 1.0986123
## 9519                               1 4.499810 3.8501476 0.6931472
## 9520                               1 4.867534 0.6931472 2.3025851
## 9521                               1 7.600902 1.0986123 0.0000000
## 9522                               1 5.003946 4.6728288 1.6094379
## 9523                               1 4.605170 4.0604430 0.6931472
## 9524                               1 4.605170 1.7917595 0.6931472
## 9525                               1 4.828314 0.0000000 0.6931472
## 9526                               1 5.293305 5.3230100 0.0000000
## 9527                              26 3.912023 0.6931472 0.0000000
## 9528                               1 5.703782 0.6931472 0.0000000
## 9529                               1 5.652489 0.6931472 1.3862944
## 9530                               1 5.799093 2.4849066 1.0986123
## 9531                               3 3.663562 4.0430513 0.6931472
## 9532                               2 4.343805 4.9126549 0.6931472
## 9533                               1 4.744932 0.6931472 0.0000000
## 9534                               1 4.595120 2.5649494 1.0986123
## 9535                               1 5.521461 0.0000000 0.0000000
## 9536                               1 4.127134 4.6443909 0.0000000
## 9537                               1 4.653960 3.2580965 1.0986123
## 9538                               5 4.007333 1.9459101 0.0000000
## 9539                              21 5.147494 0.6931472 3.4011974
## 9540                               1 4.094345 3.7376696 0.6931472
## 9541                               4 4.276666 5.3033049 0.0000000
## 9542                               3 5.433722 5.0689042 1.0986123
## 9543                               3 4.248495 4.2195077 0.0000000
## 9544                               7 3.688879 1.0986123 3.4011974
## 9545                               2 4.595120 3.9120230 0.6931472
## 9546                               1 4.605170 2.7080502 0.6931472
## 9547                               1 4.356709 1.6094379 1.3862944
## 9548                               1 4.828314 4.4773368 0.0000000
## 9549                               1 5.247024 4.8675345 1.0986123
## 9550                               1 4.905275 0.6931472 0.6931472
## 9551                               1 5.521461 3.1354942 0.6931472
## 9552                               3 4.595120 4.2046926 1.6094379
## 9553                               2 3.912023 1.6094379 0.0000000
## 9554                               1 3.988984 2.1972246 3.4011974
## 9555                               1 4.248495 3.2580965 1.0986123
## 9556                               1 4.905275 4.0604430 0.6931472
## 9557                               1 6.052089 4.5538769 0.6931472
## 9558                               1 4.804021 1.0986123 1.6094379
## 9559                               1 4.948760 0.6931472 1.7917595
## 9560                               2 4.248495 2.8332133 1.3862944
## 9561                               1 5.010635 0.6931472 0.0000000
## 9562                               1 5.521461 0.0000000 0.0000000
## 9563                               3 4.744932 4.8040210 1.3862944
## 9564                               1 4.867534 2.9444390 0.6931472
## 9565                               4 4.304065 5.4847969 0.0000000
## 9566                               1 3.871201 4.0604430 0.6931472
## 9567                               1 4.442651 2.0794415 0.0000000
## 9568                               1 5.192957 0.6931472 1.0986123
## 9569                               1 4.574711 0.6931472 1.6094379
## 9570                               2 4.605170 3.5835189 0.0000000
## 9571                               2 4.653960 4.3040651 1.6094379
## 9572                               1 4.605170 1.0986123 1.7917595
## 9573                               1 4.976734 4.0775374 1.3862944
## 9574                               1 5.666427 2.3025851 1.0986123
## 9575                               1 6.684612 0.0000000 1.0986123
## 9576                               1 3.367296 3.2958369 1.0986123
## 9577                               1 4.248495 1.9459101 0.6931472
## 9578                               2 4.382027 1.7917595 1.0986123
## 9579                               1 4.094345 4.3694479 0.6931472
## 9580                               2 4.248495 3.0910425 1.6094379
## 9581                               1 5.164786 2.7725887 1.6094379
## 9582                               1 4.969813 4.6539604 0.0000000
## 9583                               1 3.688879 2.8903718 0.6931472
## 9584                               2 5.192957 3.2958369 0.0000000
## 9585                               1 4.317488 5.0875963 1.3862944
## 9586                               1 4.382027 4.0253517 1.3862944
## 9587                               1 5.863631 1.9459101 1.0986123
## 9588                               3 4.234107 4.1271344 0.6931472
## 9589                               1 5.010635 4.8978398 0.6931472
## 9590                               1 5.521461 1.7917595 3.4011974
## 9591                               2 5.634790 0.6931472 1.3862944
## 9592                               1 4.007333 2.7725887 1.0986123
## 9593                               3 3.912023 1.0986123 0.0000000
## 9594                               1 3.891820 0.0000000 0.0000000
## 9595                               1 3.806662 0.6931472 1.3862944
## 9596                               1 5.010635 4.2195077 0.0000000
## 9597                               1 4.787492 0.0000000 1.0986123
## 9598                               1 5.010635 4.4886364 0.6931472
## 9599                               1 4.787492 4.9628446 3.4011974
## 9600                               1 4.382027 1.0986123 2.6390573
## 9601                               1 4.094345 4.3567088 1.6094379
## 9602                               2 4.248495 0.0000000 1.0986123
## 9603                               1 5.476464 5.0937502 0.6931472
## 9604                               1 4.488636 4.0604430 0.6931472
## 9605                               1 3.912023 1.7917595 1.0986123
## 9606                               4 3.610918 3.5263605 0.0000000
## 9607                               1 5.476464 5.6058021 0.0000000
## 9608                               2 5.010635 2.4849066 1.3862944
## 9609                               1 5.010635 0.0000000 0.0000000
## 9610                               3 5.886104 2.4849066 1.0986123
## 9611                               2 4.744932 4.4998097 1.9459101
## 9612                               1 5.010635 0.6931472 0.0000000
## 9613                               1 5.332719 4.4308168 1.3862944
## 9614                               1 4.787492 5.4806389 0.6931472
## 9615                               1 5.075174 0.0000000 1.9459101
## 9616                               1 4.442651 4.0430513 0.6931472
## 9617                               1 4.605170 0.6931472 0.0000000
## 9618                               1 3.806662 1.0986123 0.6931472
## 9619                               1 5.075174 4.3694479 1.6094379
## 9620                              37 3.688879 0.0000000 3.3672958
## 9621                               2 3.891820 3.7612001 0.6931472
## 9622                               1 6.204558 1.3862944 2.7080502
## 9623                               3 4.488636 2.9444390 1.0986123
## 9624                               2 5.393628 1.9459101 1.0986123
## 9625                               1 4.595120 4.3567088 0.6931472
## 9626                               1 4.382027 0.6931472 1.6094379
## 9627                               1 4.356709 3.1354942 0.6931472
## 9628                               1 4.700480 0.0000000 0.0000000
## 9629                               1 4.867534 3.4339872 3.4339872
## 9630                               1 5.010635 0.6931472 0.0000000
## 9631                               1 4.077537 4.7273878 0.0000000
## 9632                               1 4.382027 0.0000000 2.1972246
## 9633                               1 4.382027 0.0000000 1.0986123
## 9634                               1 5.075174 2.0794415 0.6931472
## 9635                               1 3.806662 4.4659081 0.0000000
## 9636                               1 4.543295 0.0000000 2.6390573
## 9637                               3 4.343805 5.5373343 0.0000000
## 9638                               1 5.003946 4.6821312 1.7917595
## 9639                               1 4.867534 0.6931472 1.9459101
## 9640                               1 4.043051 0.6931472 1.0986123
## 9641                               1 5.010635 2.1972246 1.6094379
## 9642                               1 4.007333 1.7917595 1.3862944
## 9643                               1 4.844187 1.0986123 0.6931472
## 9644                               1 4.094345 2.9957323 0.6931472
## 9645                               2 4.158883 2.7725887 0.0000000
## 9646                               3 3.688879 3.0910425 0.0000000
## 9647                               1 3.912023 4.8040210 1.0986123
## 9648                               4 4.418841 5.3082677 0.0000000
## 9649                               1 5.298317 1.0986123 0.0000000
## 9650                               2 3.891820 3.2188758 2.6390573
## 9651                               4 4.094345 5.2678582 0.0000000
## 9652                               1 3.806662 0.0000000 2.9957323
## 9653                               1 5.192957 0.6931472 0.0000000
## 9654                               1 3.806662 1.3862944 0.6931472
## 9655                               1 4.488636 4.6151205 0.6931472
## 9656                               1 3.218876 0.0000000 0.6931472
## 9657                               1 5.652489 3.9702919 0.6931472
## 9658                               1 4.605170 4.5108595 1.6094379
## 9659                               1 4.499810 0.0000000 1.0986123
## 9660                               1 4.317488 4.8751973 0.6931472
## 9661                               1 4.317488 0.0000000 1.0986123
## 9662                               1 5.298317 5.0106353 0.6931472
## 9663                               5 3.555348 4.7535902 0.0000000
## 9664                               3 5.693732 2.1972246 0.0000000
## 9665                               1 5.273000 4.7535902 1.0986123
## 9666                               1 4.382027 1.3862944 1.0986123
## 9667                               4 4.744932 2.8903718 3.4011974
## 9668                               2 4.248495 1.3862944 1.6094379
## 9669                               1 4.779123 2.5649494 1.3862944
## 9670                               1 4.787492 3.2580965 0.0000000
## 9671                               1 5.521461 2.0794415 1.0986123
## 9672                               1 3.806662 0.0000000 0.0000000
## 9673                               2 5.043425 1.0986123 1.6094379
## 9674                               1 4.574711 0.0000000 0.0000000
## 9675                               1 4.317488 1.3862944 0.6931472
## 9676                              12 5.043425 1.9459101 3.4011974
## 9677                               2 5.468060 1.7917595 1.0986123
## 9678                               1 5.521461 2.0794415 1.0986123
## 9679                               3 4.094345 3.2958369 0.0000000
## 9680                               5 3.737670 3.9889840 0.6931472
## 9681                               2 4.653960 2.8332133 1.0986123
## 9682                               1 4.787492 4.8283137 0.6931472
## 9683                               1 4.382027 0.0000000 0.0000000
## 9684                               1 4.828314 1.7917595 0.0000000
## 9685                               1 4.828314 2.6390573 0.0000000
## 9686                               8 3.912023 0.6931472 2.6390573
## 9687                               1 4.094345 2.3025851 0.6931472
## 9688                               2 4.499810 4.2195077 1.3862944
## 9689                               1 5.616771 4.9972123 0.6931472
## 9690                               2 4.605170 4.9836066 3.4011974
## 9691                               2 5.298317 0.0000000 0.0000000
## 9692                               2 4.595120 4.8598124 0.0000000
## 9693                               1 4.718499 3.4339872 1.6094379
## 9694                               2 4.174387 0.0000000 0.0000000
## 9695                               1 5.298317 2.1972246 0.0000000
## 9696                               4 4.584967 4.9052748 1.6094379
## 9697                               2 3.912023 3.8918203 0.6931472
## 9698                               1 4.905275 2.3978953 1.0986123
## 9699                               1 3.912023 5.2470241 0.0000000
## 9700                               1 4.976734 0.6931472 1.3862944
## 9701                               1 4.948760 0.6931472 0.0000000
## 9702                               7 4.700480 4.4543473 0.6931472
## 9703                               9 4.700480 1.9459101 3.4011974
## 9704                               1 5.700444 0.6931472 0.6931472
## 9705                               1 5.247024 3.2580965 0.6931472
## 9706                               1 4.248495 2.5649494 1.0986123
## 9707                               1 4.317488 1.3862944 0.0000000
## 9708                               1 5.043425 2.8332133 1.0986123
## 9709                               1 4.564348 3.5263605 0.6931472
## 9710                               2 5.857933 0.6931472 1.0986123
## 9711                               1 4.499810 4.0775374 1.3862944
## 9712                               1 6.214608 4.0073332 1.0986123
## 9713                               1 5.164786 2.7080502 1.9459101
## 9714                               1 3.912023 0.0000000 1.6094379
## 9715                               1 4.867534 5.6664267 0.0000000
## 9716                               1 4.499810 0.0000000 0.6931472
## 9717                               2 4.174387 3.6375862 0.6931472
## 9718                               1 5.298317 0.0000000 0.0000000
## 9719                               2 4.143135 3.5553481 1.6094379
## 9720                               1 4.700480 0.6931472 0.0000000
## 9721                               1 4.605170 2.6390573 0.0000000
## 9722                               1 4.094345 2.3978953 0.6931472
## 9723                               4 3.806662 3.4657359 1.6094379
## 9724                               2 4.762174 4.8283137 3.3322045
## 9725                               1 5.164786 2.3025851 1.6094379
## 9726                               1 7.600902 0.0000000 0.0000000
## 9727                               1 4.997212 3.4011974 0.0000000
## 9728                               1 4.605170 1.6094379 0.0000000
## 9729                              15 5.298317 1.0986123 3.4011974
## 9730                               1 6.476972 0.0000000 0.6931472
## 9731                               1 5.293305 2.8903718 0.6931472
## 9732                              52 4.744932 0.0000000 3.4011974
## 9733                               1 5.501258 3.9318256 1.0986123
## 9734                               8 5.231109 4.0430513 1.7917595
## 9735                               1 4.477337 3.1780538 0.6931472
## 9736                               1 5.634790 0.0000000 0.0000000
## 9737                               1 4.553877 0.0000000 0.6931472
## 9738                               1 5.560682 5.1357984 0.6931472
## 9739                               1 4.997212 0.0000000 0.6931472
## 9740                              52 4.605170 0.6931472 3.4011974
## 9741                               1 4.605170 4.0604430 0.0000000
## 9742                               2 4.158883 4.9558271 1.0986123
## 9743                               2 4.828314 3.4011974 0.6931472
## 9744                               1 4.700480 1.3862944 0.6931472
## 9745                              12 4.941642 1.6094379 3.4011974
## 9746                               1 3.555348 2.1972246 0.0000000
## 9747                               2 4.442651 4.5108595 1.0986123
## 9748                               1 4.709530 1.3862944 0.0000000
## 9749                               1 5.988961 1.6094379 4.4998097
## 9750                               4 3.688879 3.6635616 0.0000000
## 9751                               2 5.192957 2.4849066 1.6094379
## 9752                               1 4.605170 0.0000000 0.0000000
## 9753                               1 5.010635 5.2882670 0.6931472
## 9754                               2 4.143135 3.9512437 0.0000000
## 9755                               1 5.164786 0.0000000 0.0000000
## 9756                               1 4.430817 2.8332133 1.0986123
## 9757                               2 3.496508 4.6347290 0.6931472
## 9758                               1 3.912023 0.0000000 1.6094379
## 9759                               1 4.317488 0.0000000 0.0000000
## 9760                               1 4.828314 2.3025851 0.6931472
## 9761                               1 4.941642 2.7725887 1.9459101
## 9762                               5 5.521461 3.9120230 0.0000000
## 9763                               1 4.094345 0.0000000 1.0986123
## 9764                               1 4.941642 3.8918203 0.0000000
## 9765                               1 5.247024 2.7080502 1.6094379
## 9766                               1 4.510860 5.1119878 0.6931472
## 9767                               2 3.688879 3.5263605 1.3862944
## 9768                               1 4.276666 1.9459101 1.0986123
## 9769                               1 4.867534 4.7449321 1.0986123
## 9770                               1 4.499810 1.7917595 0.0000000
## 9771                               3 4.605170 0.6931472 2.7080502
## 9772                               4 5.010635 5.4161004 0.0000000
## 9773                               1 4.127134 3.4657359 2.3025851
## 9774                               1 4.605170 1.6094379 1.9459101
## 9775                               4 5.010635 5.3327188 0.0000000
## 9776                               1 4.553877 1.0986123 0.6931472
## 9777                               2 5.135798 2.0794415 0.0000000
## 9778                               4 3.688879 2.7725887 1.9459101
## 9779                               8 3.988984 3.1354942 2.1972246
## 9780                               1 3.401197 1.3862944 0.0000000
## 9781                               2 5.010635 3.9318256 1.7917595
## 9782                               1 5.521461 3.4965076 0.6931472
## 9783                               4 3.912023 0.0000000 0.0000000
## 9784                               1 4.787492 0.0000000 0.0000000
## 9785                               2 6.016157 1.0986123 3.4011974
## 9786                               1 4.290459 1.0986123 3.8066625
## 9787                               1 5.521461 0.0000000 0.0000000
## 9788                               1 5.521461 0.6931472 0.6931472
## 9789                               3 4.934474 1.7917595 0.0000000
## 9790                               1 5.003946 2.3978953 1.6094379
## 9791                               1 5.220356 5.4847969 0.6931472
## 9792                               1 5.438079 2.3025851 1.6094379
## 9793                               1 5.164786 3.8918203 0.0000000
## 9794                               1 5.010635 0.0000000 0.6931472
## 9795                               2 5.783825 5.5759491 0.0000000
## 9796                               3 4.382027 3.2958369 2.4849066
## 9797                               1 4.905275 3.3672958 3.3322045
## 9798                               1 3.465736 1.0986123 4.0943446
## 9799                               1 5.564520 5.2781147 1.3862944
## 9800                               4 4.043051 4.5108595 0.6931472
## 9801                               1 5.416100 4.1271344 0.6931472
## 9802                               1 5.298317 0.0000000 1.0986123
## 9803                               1 5.298317 1.6094379 0.6931472
## 9804                               4 4.174387 4.3944492 0.6931472
## 9805                               2 5.010635 0.0000000 0.6931472
## 9806                               2 5.926926 1.0986123 1.0986123
## 9807                               1 3.806662 2.1972246 0.0000000
## 9808                               1 5.416100 0.6931472 1.0986123
## 9809                               1 5.105945 3.4339872 2.3025851
## 9810                               1 7.047517 0.6931472 1.9459101
## 9811                               1 4.442651 0.0000000 1.0986123
## 9812                               1 4.828314 0.6931472 0.0000000
## 9813                               1 4.605170 0.6931472 0.0000000
## 9814                               1 5.187386 3.2580965 1.0986123
## 9815                               1 3.912023 1.3862944 1.0986123
## 9816                               2 4.744932 3.3322045 1.6094379
## 9817                               1 4.605170 5.0172798 1.0986123
## 9818                               3 4.317488 4.5432948 0.6931472
## 9819                               1 4.094345 1.3862944 0.0000000
## 9820                               1 5.480639 0.0000000 0.6931472
## 9821                               1 5.669881 4.0604430 1.0986123
## 9822                               2 4.025352 4.3307333 1.6094379
## 9823                               1 4.553877 3.4657359 0.6931472
## 9824                               1 4.248495 4.3307333 0.0000000
## 9825                               1 4.828314 2.0794415 1.3862944
## 9826                               1 5.273000 1.3862944 0.0000000
## 9827                               2 3.806662 3.2188758 0.0000000
## 9828                               1 3.912023 2.1972246 1.0986123
## 9829                               2 4.007333 5.2832037 0.6931472
## 9830                               1 6.907755 0.0000000 1.6094379
## 9831                               1 3.737670 0.0000000 4.0943446
## 9832                               1 4.653960 3.9889840 0.0000000
## 9833                               1 3.806662 2.3978953 1.0986123
## 9834                               1 4.828314 0.6931472 0.6931472
## 9835                               5 3.806662 4.4426513 0.6931472
## 9836                               1 4.553877 2.3025851 0.6931472
## 9837                               1 5.298317 1.9459101 1.6094379
## 9838                               1 5.247024 4.3307333 0.6931472
## 9839                               1 5.135798 3.3322045 1.3862944
## 9840                               1 3.988984 0.6931472 0.6931472
## 9841                               1 5.010635 1.0986123 0.0000000
## 9842                               1 5.703782 0.0000000 0.6931472
## 9843                               1 4.744932 0.6931472 0.6931472
## 9844                               1 5.416100 4.4188406 0.0000000
## 9845                              12 4.828314 2.3025851 3.4011974
## 9846                               1 5.521461 0.0000000 0.0000000
## 9847                               1 4.859812 4.5325995 1.0986123
## 9848                               1 4.905275 4.7449321 0.6931472
## 9849                               1 5.164786 2.4849066 0.6931472
## 9850                               1 4.007333 1.7917595 1.0986123
## 9851                               1 4.828314 0.6931472 0.0000000
## 9852                               1 5.298317 0.6931472 1.0986123
## 9853                               1 3.688879 2.4849066 2.3025851
## 9854                               3 3.912023 4.2626799 0.0000000
## 9855                               1 5.111988 2.7725887 0.0000000
## 9856                               1 4.820282 4.7706846 0.0000000
## 9857                               1 4.174387 3.3322045 0.6931472
## 9858                               1 4.043051 1.7917595 0.0000000
## 9859                               1 4.605170 0.0000000 0.0000000
## 9860                               1 4.094345 2.1972246 1.0986123
## 9861                               5 4.499810 5.5373343 0.0000000
## 9862                               2 4.867534 4.1896547 0.0000000
## 9863                               1 5.857933 2.8903718 1.3862944
## 9864                               1 4.094345 0.0000000 0.6931472
## 9865                               1 4.382027 1.9459101 0.6931472
## 9866                               1 4.605170 4.3040651 1.0986123
## 9867                               1 5.298317 4.7449321 1.0986123
## 9868                               2 4.787492 2.8332133 1.7917595
## 9869                               3 5.135798 0.0000000 0.0000000
## 9870                               1 3.737670 1.0986123 2.7080502
## 9871                               2 3.912023 3.6375862 0.0000000
## 9872                               1 5.135798 1.9459101 0.0000000
## 9873                               1 5.241747 5.1239640 0.0000000
## 9874                               1 5.010635 2.3978953 0.6931472
## 9875                               1 4.343805 2.1972246 0.0000000
## 9876                               2 4.094345 5.1059455 1.6094379
## 9877                               1 5.010635 0.0000000 0.0000000
## 9878                               1 4.787492 0.6931472 0.0000000
## 9879                               1 4.442651 0.6931472 0.0000000
## 9880                               5 4.442651 5.5984220 0.0000000
## 9881                               1 6.109248 0.6931472 1.7917595
## 9882                               1 4.094345 2.0794415 1.0986123
## 9883                               1 4.553877 1.6094379 0.6931472
## 9884                               4 3.637586 3.9120230 0.0000000
## 9885                               1 4.828314 0.6931472 0.0000000
## 9886                               1 4.828314 0.0000000 0.6931472
## 9887                               2 4.077537 4.0775374 1.0986123
## 9888                               1 4.174387 3.4657359 0.6931472
## 9889                               1 5.556828 5.4026774 0.6931472
## 9890                               1 4.094345 3.0910425 3.4011974
## 9891                               2 4.553877 2.9957323 0.6931472
## 9892                               2 3.806662 0.0000000 0.0000000
## 9893                               1 4.890349 3.6375862 1.0986123
## 9894                               1 5.556828 4.6347290 0.6931472
## 9895                               1 5.010635 3.6888795 1.9459101
## 9896                               1 4.934474 1.7917595 1.0986123
## 9897                               1 3.663562 1.7917595 1.0986123
## 9898                               1 6.073045 0.0000000 1.6094379
## 9899                               1 4.605170 0.6931472 0.0000000
## 9900                               1 4.595120 3.6888795 1.0986123
## 9901                               2 4.248495 4.0430513 1.3862944
## 9902                               1 4.477337 4.1588831 1.3862944
## 9903                               1 4.941642 4.0775374 3.6888795
## 9904                               2 4.382027 2.7725887 0.0000000
## 9905                               1 3.784190 0.0000000 0.0000000
## 9906                               1 5.700444 1.3862944 1.6094379
## 9907                               1 5.273000 4.4426513 1.3862944
## 9908                               1 4.941642 2.0794415 1.0986123
## 9909                               1 5.192957 0.0000000 0.0000000
## 9910                               1 4.248495 4.9272537 1.0986123
## 9911                              26 4.007333 1.3862944 0.0000000
## 9912                               1 4.174387 0.0000000 1.6094379
## 9913                              26 3.806662 2.8903718 0.0000000
## 9914                               1 4.564348 4.5325995 2.6390573
## 9915                               2 4.406719 5.4293456 0.0000000
## 9916                               1 5.010635 1.7917595 0.0000000
## 9917                               1 4.828314 0.0000000 1.0986123
## 9918                               1 4.744932 0.0000000 1.6094379
## 9919                               1 4.976734 4.0943446 3.4011974
## 9920                               1 5.129899 3.0910425 0.0000000
## 9921                               1 4.317488 2.7080502 0.0000000
## 9922                               1 4.605170 0.6931472 1.9459101
## 9923                               2 4.234107 0.0000000 3.8066625
## 9924                               9 3.806662 4.9199809 0.0000000
## 9925                               9 4.007333 4.9628446 0.0000000
## 9926                               9 4.007333 4.3567088 0.0000000
## 9927                               9 3.871201 5.0106353 0.0000000
## 9928                               9 3.912023 4.5951199 0.0000000
## 9929                               1 4.025352 0.0000000 0.6931472
## 9930                               3 4.174387 2.5649494 3.3322045
## 9931                               1 4.941642 4.3040651 0.6931472
## 9932                               1 4.553877 4.0430513 0.6931472
## 9933                               2 4.290459 4.5217886 0.6931472
## 9934                               2 5.192957 0.6931472 1.9459101
## 9935                               1 3.850148 2.0794415 1.9459101
## 9936                               3 4.007333 1.6094379 1.6094379
## 9937                               2 4.828314 2.3025851 0.6931472
## 9938                               1 4.094345 1.6094379 0.6931472
## 9939                               1 5.416100 0.0000000 1.0986123
## 9940                               1 5.129899 3.4011974 0.6931472
## 9941                               7 3.806662 1.9459101 3.4011974
## 9942                               1 4.867534 1.3862944 1.6094379
## 9943                               1 3.970292 0.0000000 1.0986123
## 9944                               1 5.010635 4.7957905 0.6931472
## 9945                               2 4.941642 2.5649494 0.0000000
## 9946                               2 4.584967 0.0000000 0.6931472
## 9947                               1 4.787492 4.4773368 1.0986123
## 9948                               1 5.135798 0.0000000 1.0986123
## 9949                               2 3.850148 2.9444390 2.6390573
## 9950                               2 4.859812 4.9199809 0.6931472
## 9951                               2 4.779123 5.1590553 0.6931472
## 9952                               1 3.912023 3.1780538 1.7917595
## 9953                               1 4.605170 2.7725887 2.9957323
## 9954                               1 4.007333 1.0986123 0.0000000
## 9955                               1 5.616771 3.9318256 1.0986123
## 9956                               1 4.174387 1.7917595 0.6931472
## 9957                               1 5.135798 3.3322045 1.0986123
## 9958                               1 4.553877 1.7917595 0.6931472
## 9959                               1 5.164786 5.2257467 1.0986123
## 9960                               1 5.010635 2.9444390 0.6931472
## 9961                               1 4.317488 1.7917595 1.0986123
## 9962                               1 3.931826 0.6931472 0.0000000
## 9963                               2 6.801283 3.9512437 1.7917595
## 9964                               7 3.218876 2.0794415 3.4011974
## 9965                               2 4.174387 4.8121844 0.0000000
## 9966                               4 3.737670 4.8040210 0.0000000
## 9967                               1 3.688879 2.4849066 1.6094379
## 9968                               4 4.094345 2.1972246 0.6931472
## 9969                               1 5.056246 0.6931472 1.0986123
## 9970                               1 5.135798 0.0000000 0.0000000
## 9971                               2 3.912023 2.7080502 1.0986123
## 9972                               2 4.007333 3.4965076 0.0000000
## 9973                               1 3.806662 1.0986123 1.0986123
## 9974                             121 4.691348 0.0000000 3.4011974
## 9975                               1 4.653960 4.8751973 1.3862944
## 9976                               3 5.010635 3.8712010 0.0000000
## 9977                               1 3.806662 0.0000000 2.6390573
## 9978                               7 3.688879 1.6094379 3.4011974
## 9979                               2 4.653960 3.4657359 1.6094379
## 9980                              12 4.905275 2.0794415 3.4011974
## 9981                               1 5.010635 0.0000000 0.0000000
## 9982                               1 4.248495 4.3438054 0.6931472
## 9983                               1 4.787492 3.3322045 0.6931472
## 9984                               1 4.605170 1.6094379 0.0000000
## 9985                               1 4.828314 3.2958369 0.0000000
## 9986                               1 5.135798 5.2470241 0.0000000
## 9987                               1 4.382027 0.0000000 0.0000000
## 9988                               3 5.517453 1.6094379 1.0986123
## 9989                               1 5.857933 1.3862944 1.0986123
## 9990                               1 4.934474 2.3978953 1.0986123
## 9991                               1 4.488636 1.6094379 1.3862944
## 9992                              52 5.068904 1.7917595 3.4011974
## 9993                               2 4.248495 4.2046926 1.0986123
## 9994                               1 5.298317 2.3025851 1.6094379
## 9995                             121 5.129899 0.6931472 3.4011974
## 9996                               1 4.499810 4.7535902 0.0000000
## 9997                               1 5.720312 5.1647860 1.0986123
## 9998                               1 4.477337 4.2626799 3.3672958
## 9999                               1 4.700480 4.2341065 1.0986123
## 10000                              1 5.010635 2.3978953 0.6931472
## 10001                              2 3.912023 1.7917595 3.2958369
## 10002                              2 4.828314 1.0986123 1.0986123
## 10003                              1 4.828314 1.3862944 1.9459101
## 10004                              1 4.382027 0.0000000 1.3862944
## 10005                              1 4.787492 1.3862944 0.0000000
## 10006                              1 4.369448 0.0000000 1.9459101
## 10007                              1 5.247024 2.3025851 0.6931472
## 10008                            121 5.476464 0.6931472 3.4011974
## 10009                              1 5.298317 3.3672958 0.6931472
## 10010                              1 5.298317 0.0000000 0.0000000
## 10011                              3 5.164786 3.7841896 1.9459101
## 10012                              1 5.298317 0.0000000 1.3862944
## 10013                              1 4.867534 4.8598124 1.0986123
## 10014                              1 4.553877 0.6931472 0.0000000
## 10015                              1 4.941642 1.0986123 1.9459101
## 10016                              1 4.605170 3.8286414 1.3862944
## 10017                              1 4.317488 0.0000000 1.0986123
## 10018                              1 4.382027 2.8332133 0.0000000
## 10019                              1 4.094345 0.0000000 0.6931472
## 10020                              2 4.828314 4.8283137 0.6931472
## 10021                              1 4.382027 0.6931472 0.0000000
## 10022                              1 4.574711 3.0910425 0.6931472
## 10023                              1 4.700480 0.6931472 1.0986123
## 10024                              1 4.941642 4.0943446 1.0986123
## 10025                              2 4.043051 2.6390573 1.6094379
## 10026                              1 3.912023 0.0000000 1.0986123
## 10027                              4 5.192957 0.0000000 0.0000000
## 10028                              1 5.192957 2.8903718 0.6931472
## 10029                              1 4.605170 2.5649494 0.6931472
## 10030                              1 5.164786 3.0445224 0.6931472
## 10031                              1 4.605170 1.0986123 1.0986123
## 10032                              1 5.521461 0.0000000 0.6931472
## 10033                              1 5.010635 0.0000000 0.0000000
## 10034                              1 4.499810 3.5263605 1.0986123
## 10035                              3 5.010635 1.7917595 1.6094379
## 10036                              1 5.247024 0.6931472 0.0000000
## 10037                              3 4.317488 4.5108595 0.0000000
## 10038                              1 5.010635 2.4849066 1.0986123
## 10039                              1 4.174387 2.0794415 3.4011974
## 10040                              7 3.295837 1.9459101 3.4011974
## 10041                              2 5.010635 4.8121844 0.6931472
## 10042                              1 4.317488 3.9702919 0.6931472
## 10043                              3 4.382027 3.6375862 0.6931472
## 10044                              1 5.220356 1.3862944 0.6931472
## 10045                              1 4.007333 0.6931472 0.0000000
## 10046                              1 4.584967 2.4849066 0.6931472
## 10047                              4 5.105945 5.4467374 0.0000000
## 10048                              1 4.317488 3.6888795 1.3862944
## 10049                              1 4.976734 1.0986123 0.0000000
## 10050                              1 4.905275 2.3025851 1.0986123
## 10051                              1 3.912023 0.0000000 0.6931472
## 10052                              1 4.605170 3.2188758 0.0000000
## 10053                              1 4.867534 1.7917595 0.0000000
## 10054                              1 4.976734 0.0000000 0.6931472
## 10055                              1 4.787492 2.1972246 1.9459101
## 10056                              1 4.499810 4.2046926 0.6931472
## 10057                              1 5.521461 1.0986123 0.6931472
## 10058                              1 4.499810 0.0000000 1.6094379
## 10059                              2 5.105945 1.9459101 4.7874917
## 10060                              1 5.164786 2.1972246 1.6094379
## 10061                              1 4.787492 4.3040651 0.6931472
## 10062                              1 4.442651 1.0986123 0.0000000
## 10063                              1 4.499810 0.0000000 0.0000000
## 10064                              1 4.248495 2.1972246 1.7917595
## 10065                              1 4.700480 0.0000000 1.0986123
## 10066                              4 4.828314 2.0794415 3.4011974
## 10067                              1 5.273000 1.6094379 1.0986123
## 10068                              1 4.644391 4.1743873 1.0986123
## 10069                              1 3.806662 0.6931472 0.0000000
## 10070                              1 3.688879 0.0000000 1.3862944
## 10071                              1 4.605170 2.8332133 0.6931472
## 10072                              1 5.686975 0.6931472 1.3862944
## 10073                              1 4.317488 4.8121844 0.0000000
## 10074                              5 3.526361 4.2626799 0.6931472
## 10075                              1 4.317488 1.7917595 1.0986123
## 10076                              1 4.700480 4.4426513 0.0000000
## 10077                              1 5.220356 0.6931472 0.6931472
## 10078                              1 4.976734 3.8918203 1.7917595
## 10079                              1 5.521461 3.5263605 1.9459101
## 10080                              2 4.976734 4.5849675 1.6094379
## 10081                              1 5.273000 1.3862944 1.3862944
## 10082                              1 4.454347 1.0986123 0.0000000
## 10083                              1 4.174387 2.8332133 1.0986123
## 10084                              1 5.293305 2.8332133 3.3322045
## 10085                              2 4.007333 4.2046926 0.6931472
## 10086                              1 5.010635 3.6888795 0.6931472
## 10087                              1 4.605170 1.0986123 1.6094379
## 10088                              3 5.003946 3.2580965 0.6931472
## 10089                              1 3.583519 0.0000000 0.0000000
## 10090                              5 3.912023 1.0986123 0.6931472
## 10091                              4 3.912023 4.1896547 0.6931472
## 10092                              1 4.290459 1.3862944 0.0000000
## 10093                              2 4.605170 1.0986123 2.7080502
## 10094                              1 5.262690 2.0794415 0.0000000
## 10095                              1 4.369448 1.3862944 1.0986123
## 10096                              1 4.094345 0.6931472 1.3862944
## 10097                              1 4.094345 0.0000000 1.0986123
## 10098                              1 5.068904 5.2364420 0.0000000
## 10099                              1 4.317488 0.6931472 1.3862944
## 10100                              1 6.620073 1.7917595 0.0000000
## 10101                              1 5.459586 0.6931472 0.0000000
## 10102                              2 3.713572 4.8202816 0.0000000
## 10103                              2 5.393628 4.5325995 0.6931472
## 10104                              1 5.192957 1.6094379 1.3862944
## 10105                              1 5.220356 2.3025851 1.7917595
## 10106                              1 5.416100 0.0000000 0.6931472
## 10107                              1 5.010635 2.1972246 0.6931472
## 10108                              1 4.304065 1.7917595 0.6931472
## 10109                              3 3.891820 4.9126549 0.0000000
## 10110                              1 4.941642 0.0000000 2.6390573
## 10111                              1 5.192957 3.7612001 0.0000000
## 10112                              1 3.912023 0.6931472 1.0986123
## 10113                              2 3.850148 6.4441313 0.0000000
## 10114                             49 5.501258 0.0000000 3.4011974
## 10115                              1 4.744932 4.8751973 0.0000000
## 10116                              1 3.912023 0.0000000 1.9459101
## 10117                              1 4.700480 4.7184989 0.6931472
## 10118                              2 4.828314 3.2580965 1.6094379
## 10119                              2 5.010635 4.4998097 1.0986123
## 10120                              1 4.934474 0.0000000 0.0000000
## 10121                             39 5.010635 2.3025851 3.4011974
## 10122                              1 4.369448 4.3567088 0.6931472
## 10123                              1 5.480639 0.0000000 0.0000000
## 10124                              1 4.744932 0.0000000 1.6094379
## 10125                              2 4.787492 5.2149358 1.0986123
## 10126                              2 5.298317 0.0000000 0.0000000
## 10127                              2 5.298317 0.0000000 2.3025851
## 10128                              1 5.010635 0.0000000 1.9459101
## 10129                              3 5.105945 3.9702919 0.6931472
## 10130                              1 4.442651 2.3025851 1.7917595
## 10131                              1 4.867534 1.3862944 0.6931472
## 10132                              1 4.442651 0.0000000 0.0000000
## 10133                              3 4.499810 4.4067192 1.0986123
## 10134                              7 4.248495 0.6931472 2.9957323
## 10135                              1 3.688879 2.0794415 1.6094379
## 10136                              2 4.007333 3.1780538 1.9459101
## 10137                              2 4.867534 5.3471075 0.6931472
## 10138                              1 4.094345 0.0000000 1.0986123
## 10139                              1 4.174387 4.2626799 0.0000000
## 10140                              2 5.517453 4.6728288 1.9459101
## 10141                              1 4.317488 0.0000000 0.0000000
## 10142                              1 6.214608 0.6931472 0.6931472
## 10143                              3 5.129899 4.1896547 0.0000000
## 10144                              1 4.553877 1.7917595 0.0000000
## 10145                              1 4.787492 0.0000000 1.0986123
## 10146                              1 5.192957 2.5649494 1.3862944
## 10147                              1 4.382027 5.2983174 0.0000000
## 10148                              1 4.499810 4.2766661 1.3862944
## 10149                              1 4.941642 2.3978953 1.3862944
## 10150                              1 5.298317 0.0000000 0.0000000
## 10151                              1 4.934474 1.0986123 0.0000000
## 10152                              1 3.850148 0.6931472 1.9459101
## 10153                              1 4.682131 2.9444390 1.9459101
## 10154                              1 4.317488 4.4426513 1.6094379
## 10155                              1 4.094345 0.6931472 0.0000000
## 10156                              1 4.382027 0.6931472 0.6931472
## 10157                              2 3.912023 2.1972246 0.0000000
## 10158                              1 5.616771 1.3862944 3.4011974
## 10159                              1 4.174387 3.1780538 0.6931472
## 10160                              1 4.174387 0.6931472 1.6094379
## 10161                              1 4.882802 0.0000000 0.0000000
## 10162                              3 3.555348 3.2188758 0.0000000
## 10163                              1 4.317488 0.0000000 1.6094379
## 10164                              1 4.605170 0.6931472 0.0000000
## 10165                              1 4.488636 1.0986123 1.0986123
## 10166                              1 3.912023 0.0000000 0.0000000
## 10167                              1 6.109248 2.1972246 0.6931472
## 10168                              1 4.382027 0.6931472 0.6931472
## 10169                              3 4.499810 3.8286414 0.0000000
## 10170                              2 4.605170 0.0000000 0.0000000
## 10171                              1 4.499810 0.0000000 1.0986123
## 10172                              1 4.976734 1.0986123 1.0986123
## 10173                              1 4.828314 1.7917595 1.6094379
## 10174                              4 3.912023 0.6931472 0.0000000
## 10175                              1 5.010635 3.5263605 1.0986123
## 10176                              2 4.553877 0.6931472 0.0000000
## 10177                              1 4.828314 2.1972246 0.0000000
## 10178                              2 4.787492 0.0000000 0.0000000
## 10179                              1 5.991465 4.8202816 1.0986123
## 10180                              2 5.303305 5.0875963 0.0000000
## 10181                              1 3.912023 3.6375862 0.6931472
## 10182                              1 5.293305 1.6094379 0.6931472
## 10183                              1 5.220356 2.6390573 1.6094379
## 10184                              1 4.442651 2.0794415 0.0000000
## 10185                              1 4.094345 1.0986123 0.0000000
## 10186                             12 4.882802 1.6094379 3.4011974
## 10187                              1 4.605170 2.3025851 0.0000000
## 10188                              1 4.605170 1.3862944 3.4011974
## 10189                              1 5.703782 2.0794415 0.6931472
## 10190                              1 5.703782 1.0986123 1.0986123
## 10191                              1 3.663562 2.1972246 1.3862944
## 10192                              1 5.187386 2.1972246 0.0000000
## 10193                              1 2.995732 1.0986123 1.0986123
## 10194                              1 4.787492 0.6931472 0.6931472
## 10195                              2 5.135798 4.9199809 0.0000000
## 10196                              1 4.787492 5.3278762 0.0000000
## 10197                              1 4.317488 3.7376696 0.6931472
## 10198                              1 4.700480 3.9120230 0.6931472
## 10199                              2 5.176150 4.8121844 0.6931472
## 10200                              1 5.192957 2.3025851 0.0000000
## 10201                              1 4.248495 0.0000000 0.0000000
## 10202                              1 5.783825 2.1972246 0.6931472
## 10203                              1 5.105945 5.2626902 0.0000000
## 10204                              1 4.317488 0.6931472 0.0000000
## 10205                              1 5.010635 0.0000000 1.7917595
## 10206                              3 5.068904 0.0000000 0.0000000
## 10207                              1 5.521461 1.3862944 3.3322045
## 10208                              1 4.779123 1.9459101 0.0000000
## 10209                              1 4.382027 2.8332133 0.0000000
## 10210                              1 5.521461 2.4849066 1.6094379
## 10211                              1 4.828314 4.5325995 1.0986123
## 10212                              1 5.010635 3.4011974 1.6094379
## 10213                              2 3.912023 4.2626799 1.0986123
## 10214                              2 3.850148 4.9272537 0.6931472
## 10215                              1 5.010635 0.0000000 1.3862944
## 10216                              1 5.700444 5.1761497 0.0000000
## 10217                              1 4.477337 4.8828019 0.6931472
## 10218                              2 5.129899 2.1972246 0.0000000
## 10219                              2 4.700480 4.6443909 0.6931472
## 10220                              1 4.094345 0.0000000 0.0000000
## 10221                              2 4.700480 4.8040210 0.6931472
## 10222                              1 4.356709 0.6931472 1.6094379
## 10223                              1 4.382027 0.6931472 0.0000000
## 10224                              2 5.010635 2.4849066 1.0986123
## 10225                              1 5.293305 0.0000000 0.6931472
## 10226                              1 4.828314 2.7080502 0.6931472
## 10227                              2 6.476972 4.8675345 1.0986123
## 10228                              5 4.060443 4.3307333 1.7917595
## 10229                              1 5.298317 0.6931472 0.0000000
## 10230                              1 4.584967 2.1972246 2.6390573
## 10231                              1 3.688879 3.1354942 1.9459101
## 10232                              1 4.905275 4.8121844 0.6931472
## 10233                              1 5.521461 2.1972246 2.5649494
## 10234                              1 4.867534 1.3862944 0.6931472
## 10235                              1 4.094345 3.9889840 0.6931472
## 10236                              2 6.142037 3.8286414 1.0986123
## 10237                              1 4.836282 1.0986123 0.0000000
## 10238                              1 4.934474 2.8903718 1.0986123
## 10239                              1 5.298317 2.1972246 0.0000000
## 10240                              1 3.688879 0.0000000 0.0000000
## 10241                              1 4.595120 1.9459101 3.4011974
## 10242                              1 5.220356 1.0986123 0.6931472
## 10243                              2 4.094345 1.7917595 1.9459101
## 10244                              3 4.543295 1.0986123 3.4011974
## 10245                              2 4.897840 0.6931472 0.6931472
## 10246                              2 4.248495 1.7917595 1.0986123
## 10247                              1 5.298317 0.0000000 0.0000000
## 10248                              1 4.499810 4.1896547 0.6931472
## 10249                              2 4.744932 0.0000000 0.0000000
## 10250                              1 5.501258 1.7917595 2.3025851
## 10251                              1 5.926926 4.7004804 0.0000000
## 10252                              1 4.317488 5.0814044 0.6931472
## 10253                              1 5.010635 0.6931472 0.6931472
## 10254                              2 4.043051 2.3025851 0.0000000
## 10255                              1 6.052089 0.0000000 1.6094379
## 10256                              1 4.174387 2.3978953 0.0000000
## 10257                              1 4.174387 0.0000000 2.7080502
## 10258                              1 4.317488 1.0986123 2.6390573
## 10259                              1 4.605170 2.0794415 0.0000000
## 10260                              1 4.343805 0.0000000 0.6931472
## 10261                              1 5.105945 2.3025851 1.3862944
## 10262                              1 5.247024 0.0000000 1.3862944
## 10263                              1 5.247024 4.7791235 0.6931472
## 10264                              2 3.806662 1.9459101 1.0986123
## 10265                              1 4.276666 2.3978953 3.4011974
## 10266                              2 5.438079 3.9512437 1.0986123
## 10267                              1 5.521461 3.4965076 1.6094379
## 10268                              2 4.941642 0.0000000 1.3862944
## 10269                              1 4.595120 1.0986123 0.6931472
## 10270                              1 4.941642 3.4339872 1.9459101
## 10271                              2 5.198497 1.3862944 1.3862944
## 10272                              1 5.105945 5.1119878 0.6931472
## 10273                              1 5.164786 2.6390573 1.0986123
## 10274                              1 4.605170 0.0000000 1.7917595
## 10275                              1 5.342334 5.1817836 0.0000000
## 10276                              1 4.700480 0.0000000 0.0000000
## 10277                              1 3.912023 1.3862944 1.9459101
## 10278                              1 4.382027 1.0986123 0.6931472
## 10279                              2 4.317488 4.0775374 0.0000000
## 10280                              1 4.248495 0.0000000 1.9459101
## 10281                              1 4.828314 0.0000000 0.0000000
## 10282                              1 4.248495 0.0000000 0.0000000
## 10283                              1 4.605170 1.9459101 0.6931472
## 10284                              1 5.298317 0.6931472 2.0794415
## 10285                              1 4.605170 1.0986123 3.4011974
## 10286                              1 4.969813 2.5649494 0.6931472
## 10287                              2 4.553877 2.5649494 0.0000000
## 10288                              2 5.393628 1.0986123 0.6931472
## 10289                              1 5.342334 1.9459101 1.0986123
## 10290                              2 4.770685 1.6094379 1.0986123
## 10291                              2 3.912023 3.3322045 1.6094379
## 10292                              1 4.442651 0.0000000 0.0000000
## 10293                              1 5.298317 1.6094379 1.6094379
## 10294                              3 5.081404 3.0445224 0.6931472
## 10295                              1 4.700480 3.1780538 0.6931472
## 10296                              8 4.644391 1.6094379 3.4011974
## 10297                              1 5.298317 0.0000000 0.0000000
## 10298                              1 4.595120 1.6094379 0.0000000
## 10299                              1 4.382027 2.4849066 1.6094379
## 10300                              1 5.991465 1.0986123 0.0000000
## 10301                              3 4.584967 1.0986123 1.3862944
## 10302                              1 4.143135 0.6931472 0.6931472
## 10303                              2 4.234107 4.3174881 0.6931472
## 10304                              1 4.488636 2.7725887 0.0000000
## 10305                              1 4.595120 1.3862944 1.3862944
## 10306                              1 4.941642 0.6931472 1.3862944
## 10307                              2 5.010635 4.3307333 1.3862944
## 10308                              1 5.293305 1.7917595 0.6931472
## 10309                              3 5.703782 3.2188758 1.0986123
## 10310                              1 3.688879 1.0986123 0.0000000
## 10311                              1 4.605170 3.0910425 0.6931472
## 10312                              2 5.135798 4.8441871 0.6931472
## 10313                              1 4.787492 1.7917595 2.0794415
## 10314                              3 4.094345 4.9767337 0.0000000
## 10315                              1 4.499810 1.9459101 1.9459101
## 10316                              1 4.094345 0.0000000 1.6094379
## 10317                              1 5.135798 2.3978953 1.0986123
## 10318                              1 4.934474 2.3025851 1.0986123
## 10319                              1 5.521461 2.3025851 0.6931472
## 10320                              1 5.010635 0.0000000 0.0000000
## 10321                              1 4.499810 1.7917595 1.0986123
## 10322                              1 4.007333 2.6390573 1.3862944
## 10323                              1 5.690359 3.1780538 0.6931472
## 10324                              1 5.010635 2.1972246 0.6931472
## 10325                              1 4.934474 3.4011974 1.0986123
## 10326                              1 5.323010 0.6931472 1.0986123
## 10327                              1 4.499810 0.6931472 0.6931472
## 10328                              7 3.218876 1.6094379 3.4011974
## 10329                              1 4.174387 3.4657359 3.4011974
## 10330                              1 5.521461 0.0000000 0.6931472
## 10331                              1 4.941642 2.4849066 3.3672958
## 10332                              1 4.700480 1.3862944 1.0986123
## 10333                              2 4.787492 4.3694479 1.6094379
## 10334                              2 4.700480 0.6931472 0.6931472
## 10335                              2 5.298317 4.2195077 3.4011974
## 10336                              1 4.094345 0.0000000 0.6931472
## 10337                              1 5.323010 0.0000000 0.6931472
## 10338                              1 3.912023 1.3862944 1.9459101
## 10339                              1 5.209486 0.0000000 0.0000000
## 10340                              1 4.248495 3.8501476 0.6931472
## 10341                              1 4.499810 1.9459101 2.6390573
## 10342                              2 5.926926 3.1354942 0.0000000
## 10343                              1 3.912023 1.7917595 1.0986123
## 10344                              1 5.293305 3.8918203 0.0000000
## 10345                              1 5.652489 1.6094379 3.4339872
## 10346                              6 4.276666 4.6051702 1.3862944
## 10347                              1 3.583519 2.6390573 2.7080502
## 10348                              2 4.430817 3.8712010 0.6931472
## 10349                              1 4.605170 0.0000000 0.0000000
## 10350                              1 4.867534 2.7725887 0.6931472
## 10351                              3 5.652489 0.0000000 1.3862944
## 10352                              1 6.142037 4.3040651 1.0986123
## 10353                              1 5.164786 1.7917595 1.0986123
## 10354                              2 5.105945 5.3033049 1.6094379
## 10355                             96 5.049856 0.0000000 3.4011974
## 10356                              1 5.075174 0.0000000 2.6390573
## 10357                              1 5.298317 3.9512437 0.0000000
## 10358                              2 5.560682 1.3862944 1.0986123
## 10359                              1 4.605170 0.6931472 1.0986123
## 10360                              2 4.787492 4.8283137 1.6094379
## 10361                              1 4.174387 0.6931472 1.0986123
## 10362                              1 4.605170 5.0172798 0.6931472
## 10363                              1 4.844187 1.9459101 0.0000000
## 10364                              2 3.891820 3.0445224 0.6931472
## 10365                              1 4.682131 2.3978953 0.0000000
## 10366                              1 5.192957 0.0000000 0.0000000
## 10367                              1 3.526361 3.5263605 1.6094379
## 10368                              1 5.521461 0.6931472 3.9702919
## 10369                              1 4.605170 1.0986123 1.6094379
## 10370                             96 5.164786 1.9459101 3.4011974
## 10371                              1 5.247024 2.3025851 1.3862944
## 10372                              1 4.499810 1.7917595 1.9459101
## 10373                              1 5.075174 4.9628446 0.6931472
## 10374                              1 3.931826 0.0000000 0.0000000
## 10375                              1 5.010635 0.0000000 0.0000000
## 10376                              1 5.783825 2.7725887 1.0986123
## 10377                              1 4.595120 2.1972246 1.0986123
## 10378                              1 5.634790 2.5649494 0.0000000
## 10379                              1 4.700480 5.1119878 0.6931472
## 10380                              1 4.828314 4.8441871 0.6931472
## 10381                              1 5.616771 2.8903718 1.3862944
## 10382                              1 5.730100 3.0910425 0.6931472
## 10383                              1 5.298317 1.0986123 1.3862944
## 10384                              4 4.094345 4.9126549 0.6931472
## 10385                              1 4.174387 0.6931472 0.0000000
## 10386                              2 5.241747 2.0794415 0.0000000
## 10387                              1 4.094345 0.0000000 0.6931472
## 10388                              1 4.174387 0.0000000 1.0986123
## 10389                              1 4.852030 3.6109179 0.6931472
## 10390                              1 5.298317 2.9444390 0.6931472
## 10391                              1 4.317488 4.2046926 1.0986123
## 10392                              1 4.234107 0.0000000 0.0000000
## 10393                              1 4.787492 1.0986123 1.6094379
## 10394                              1 4.553877 0.0000000 0.0000000
## 10395                              1 4.955827 2.8903718 0.6931472
## 10396                              3 5.043425 2.6390573 0.6931472
## 10397                              1 5.703782 1.0986123 0.6931472
## 10398                              2 4.248495 3.8286414 1.0986123
## 10399                              1 5.192957 5.0498560 0.0000000
## 10400                              1 4.248495 2.8332133 0.0000000
## 10401                              1 4.553877 0.0000000 0.0000000
## 10402                              2 4.605170 4.4188406 1.0986123
## 10403                              2 4.859812 4.4886364 1.6094379
## 10404                              1 3.688879 0.6931472 0.0000000
## 10405                              1 4.499810 1.0986123 0.6931472
## 10406                              2 3.737670 0.0000000 0.0000000
## 10407                              5 4.248495 0.0000000 3.4011974
## 10408                              1 4.682131 1.3862944 0.6931472
## 10409                              6 6.214608 2.9957323 0.6931472
## 10410                              1 5.616771 1.3862944 0.0000000
## 10411                              1 5.666427 4.8520303 1.0986123
## 10412                              1 4.867534 4.6249728 1.6094379
## 10413                              1 4.007333 4.8283137 1.0986123
## 10414                              1 4.867534 4.5432948 1.3862944
## 10415                              2 4.094345 4.1271344 0.6931472
## 10416                              1 4.595120 4.9416424 0.0000000
## 10417                              1 3.912023 2.4849066 1.6094379
## 10418                              1 5.010635 0.0000000 0.0000000
## 10419                              1 4.499810 4.1271344 0.6931472
## 10420                              2 5.616771 4.3438054 1.6094379
## 10421                              5 4.248495 1.0986123 3.4011974
## 10422                              1 5.220356 5.1761497 1.0986123
## 10423                              1 4.234107 3.4011974 0.0000000
## 10424                              1 5.799093 4.4308168 0.6931472
## 10425                              2 5.010635 0.6931472 0.6931472
## 10426                              5 4.382027 2.3025851 3.4011974
## 10427                              5 4.382027 1.6094379 3.4011974
## 10428                              1 5.736572 4.7621739 1.0986123
## 10429                              5 4.248495 1.6094379 3.4011974
## 10430                              1 5.783825 0.6931472 0.0000000
## 10431                              2 4.174387 2.5649494 1.0986123
## 10432                              2 5.043425 4.8520303 1.3862944
## 10433                              1 3.806662 0.6931472 0.0000000
## 10434                              1 4.828314 4.9972123 1.3862944
## 10435                              2 3.891820 5.3612922 0.6931472
## 10436                              1 4.382027 1.3862944 0.6931472
## 10437                              1 4.976734 5.0238805 0.0000000
## 10438                              2 4.828314 3.6375862 0.6931472
## 10439                              3 4.094345 4.5538769 0.0000000
## 10440                              3 3.912023 4.2484952 1.0986123
## 10441                              3 6.274762 4.7791235 0.0000000
## 10442                              2 5.293305 4.3944492 0.0000000
## 10443                              1 5.365976 5.0172798 1.0986123
## 10444                              1 4.653960 0.0000000 1.3862944
## 10445                              2 5.480639 4.1588831 0.6931472
## 10446                              2 4.736198 4.3040651 1.3862944
## 10447                              1 3.806662 0.0000000 0.0000000
## 10448                              1 4.976734 2.8903718 2.3025851
## 10449                              1 4.317488 2.6390573 1.0986123
## 10450                              1 5.416100 3.8918203 1.0986123
## 10451                              1 5.010635 3.9318256 0.6931472
## 10452                              1 5.010635 0.0000000 0.0000000
## 10453                              1 5.204007 1.7917595 2.9957323
## 10454                              1 4.174387 1.0986123 1.7917595
## 10455                              1 5.164786 2.7080502 0.0000000
## 10456                              1 6.263398 2.3978953 1.3862944
## 10457                              1 4.584967 0.0000000 0.0000000
## 10458                              1 4.110874 3.0445224 1.0986123
## 10459                              1 5.068904 3.0445224 3.4011974
## 10460                              1 4.234107 2.3978953 2.3025851
## 10461                              2 4.744932 4.8828019 1.3862944
## 10462                              1 4.442651 4.5951199 2.6390573
## 10463                              1 5.342334 4.7535902 0.0000000
## 10464                              1 5.416100 0.0000000 0.0000000
## 10465                              1 4.605170 0.0000000 1.3862944
## 10466                              1 4.007333 0.0000000 0.0000000
## 10467                              1 4.382027 2.3978953 0.6931472
## 10468                              1 4.382027 0.0000000 0.0000000
## 10469                              3 4.442651 2.1972246 3.4011974
## 10470                              1 4.828314 5.1929569 0.6931472
## 10471                              1 5.164786 0.0000000 0.0000000
## 10472                              1 5.192957 3.9318256 0.6931472
## 10473                              2 4.094345 3.8918203 0.0000000
## 10474                              1 5.298317 0.6931472 0.6931472
## 10475                              8 5.686975 0.6931472 3.4011974
## 10476                              1 3.688879 0.0000000 1.3862944
## 10477                              1 5.010635 3.6635616 1.0986123
## 10478                              1 3.688879 0.0000000 0.0000000
## 10479                              1 5.192957 0.0000000 1.9459101
## 10480                              2 4.976734 4.6634391 1.7917595
## 10481                              1 5.164786 2.3978953 2.3025851
## 10482                              1 5.616771 1.3862944 1.0986123
## 10483                              1 4.744932 1.7917595 0.6931472
## 10484                              1 5.164786 1.0986123 1.3862944
## 10485                              1 5.843544 2.7725887 1.3862944
## 10486                              1 5.010635 1.0986123 0.0000000
## 10487                              1 4.317488 0.6931472 0.0000000
## 10488                              1 5.389072 4.8675345 1.3862944
## 10489                              1 5.416100 4.3307333 1.0986123
## 10490                              2 5.616771 4.5538769 0.6931472
## 10491                              2 5.857933 3.8501476 1.3862944
## 10492                              1 4.094345 1.0986123 1.9459101
## 10493                              1 4.779123 3.6109179 2.0794415
## 10494                              1 5.164786 0.6931472 1.3862944
## 10495                              1 5.814131 3.0445224 0.6931472
## 10496                              1 4.248495 0.6931472 1.9459101
## 10497                              1 5.700444 4.7361984 1.3862944
## 10498                              1 4.595120 2.5649494 1.6094379
## 10499                              1 5.010635 4.0775374 0.6931472
## 10500                              1 6.484635 0.0000000 1.0986123
## 10501                              1 4.595120 1.6094379 1.0986123
## 10502                              1 5.247024 4.6249728 1.0986123
## 10503                              1 3.713572 0.0000000 1.0986123
## 10504                              1 5.783825 1.6094379 1.9459101
## 10505                              1 4.553877 0.6931472 1.6094379
## 10506                              1 5.075174 0.6931472 1.3862944
## 10507                              2 5.991465 2.7080502 1.6094379
## 10508                              1 3.828641 0.6931472 0.0000000
## 10509                              1 4.882802 0.0000000 0.0000000
## 10510                              1 5.105945 3.7376696 1.6094379
## 10511                              1 4.382027 2.3978953 1.9459101
## 10512                              1 5.010635 0.0000000 1.6094379
## 10513                              1 4.127134 1.3862944 0.6931472
## 10514                              1 4.219508 0.0000000 1.0986123
## 10515                              5 5.703782 1.9459101 1.6094379
## 10516                              1 5.003946 1.3862944 1.6094379
## 10517                              7 5.298317 1.9459101 3.4011974
## 10518                              1 5.616771 0.6931472 0.6931472
## 10519                              1 5.010635 4.7535902 1.3862944
## 10520                              1 5.111988 3.9889840 1.0986123
## 10521                              1 4.369448 1.3862944 0.6931472
## 10522                              2 5.393628 3.8918203 1.6094379
## 10523                              1 4.248495 3.2580965 0.6931472
## 10524                              2 4.094345 1.7917595 1.0986123
## 10525                              1 4.382027 0.0000000 0.0000000
## 10526                              2 3.912023 2.3025851 3.4011974
## 10527                              1 3.912023 0.0000000 0.0000000
## 10528                              1 5.220356 0.6931472 1.0986123
## 10529                              1 4.442651 2.1972246 1.9459101
## 10530                              1 5.703782 1.6094379 3.4011974
## 10531                              1 5.293305 3.5835189 1.9459101
## 10532                              1 3.912023 0.6931472 1.6094379
## 10533                              1 5.298317 2.0794415 0.6931472
## 10534                              1 5.003946 4.4659081 0.0000000
## 10535                              1 5.010635 0.0000000 0.6931472
## 10536                              1 7.090077 0.0000000 1.7917595
## 10537                              1 5.298317 1.0986123 0.0000000
## 10538                              4 4.941642 3.8066625 0.6931472
## 10539                              1 4.700480 1.3862944 1.0986123
## 10540                              1 4.382027 0.6931472 2.3025851
## 10541                              1 4.094345 1.7917595 0.0000000
## 10542                              1 4.836282 2.0794415 1.3862944
## 10543                              1 4.007333 0.6931472 0.0000000
## 10544                              1 5.783825 0.6931472 1.0986123
## 10545                              1 4.941642 4.3567088 4.4998097
## 10546                              2 3.912023 3.4011974 0.6931472
## 10547                              1 9.210240 1.7917595 4.5951199
## 10548                              1 5.225747 4.6443909 1.0986123
## 10549                              1 5.501258 2.9957323 1.0986123
## 10550                              1 5.010635 1.0986123 0.0000000
## 10551                              4 4.595120 4.3820266 0.6931472
## 10552                              1 3.761200 4.2484952 1.3862944
## 10553                              4 4.442651 5.0434251 0.6931472
## 10554                              4 4.553877 5.1298987 0.6931472
## 10555                             96 5.192957 0.0000000 3.4011974
## 10556                              3 4.605170 0.6931472 2.9957323
## 10557                              1 4.867534 0.0000000 1.3862944
## 10558                              1 4.605170 1.3862944 1.0986123
## 10559                              1 4.442651 3.3322045 0.0000000
## 10560                              1 5.075174 3.8286414 1.9459101
## 10561                              1 4.143135 0.6931472 1.6094379
## 10562                              1 4.094345 0.0000000 0.0000000
## 10563                              3 4.553877 0.0000000 1.6094379
## 10564                              1 3.912023 4.5538769 0.6931472
## 10565                              1 4.077537 0.6931472 0.0000000
## 10566                              1 4.418841 3.4339872 1.0986123
## 10567                              2 4.382027 1.3862944 1.6094379
## 10568                              1 5.298317 3.6635616 0.6931472
## 10569                              2 5.579730 4.4773368 0.6931472
## 10570                              1 3.583519 4.6051702 0.6931472
## 10571                              1 4.356709 0.0000000 0.0000000
## 10572                              2 4.382027 0.0000000 0.0000000
## 10573                              1 5.384495 4.6249728 1.0986123
## 10574                             12 4.867534 2.3025851 3.4011974
## 10575                             12 4.867534 2.3978953 3.4011974
## 10576                              1 3.931826 0.0000000 0.0000000
## 10577                              3 3.806662 0.6931472 2.4849066
## 10578                              1 5.857933 0.6931472 0.6931472
## 10579                              2 5.579730 0.0000000 0.0000000
## 10580                              1 5.429346 2.6390573 0.6931472
## 10581                              1 4.499810 0.6931472 1.0986123
## 10582                              3 4.094345 4.2766661 0.6931472
## 10583                              1 4.787492 0.0000000 0.6931472
## 10584                              2 4.174387 0.0000000 0.0000000
## 10585                              1 4.499810 1.3862944 1.0986123
## 10586                              1 5.416100 3.4339872 0.6931472
## 10587                              1 4.634729 4.8362819 0.0000000
## 10588                              1 6.214608 1.3862944 1.6094379
## 10589                              1 4.127134 2.8903718 1.7917595
## 10590                              1 3.806662 0.0000000 0.6931472
## 10591                              1 5.703782 0.0000000 1.0986123
## 10592                              1 5.700444 5.1704840 0.0000000
## 10593                              1 4.442651 0.0000000 0.0000000
## 10594                              1 5.521461 0.0000000 0.0000000
## 10595                              1 5.393628 2.3025851 4.0073332
## 10596                              1 4.691348 4.4773368 1.0986123
## 10597                              2 5.703782 4.0943446 0.6931472
## 10598                              1 5.703782 1.3862944 0.6931472
## 10599                              1 5.666427 5.1929569 0.6931472
## 10600                              1 3.610918 3.7376696 1.3862944
## 10601                              2 3.912023 3.7376696 0.6931472
## 10602                              3 4.317488 2.8332133 1.0986123
## 10603                              4 3.784190 2.4849066 0.6931472
## 10604                              1 3.806662 0.0000000 0.0000000
## 10605                              1 4.700480 0.0000000 1.3862944
## 10606                              1 5.273000 3.6635616 1.0986123
## 10607                              1 4.605170 2.8903718 0.6931472
## 10608                              1 5.298317 1.0986123 1.9459101
## 10609                              1 5.075174 3.5553481 0.6931472
## 10610                              1 4.744932 3.7612001 1.0986123
## 10611                              2 4.007333 1.6094379 2.6390573
## 10612                              1 4.867534 1.7917595 3.4011974
## 10613                              1 4.605170 2.8332133 0.6931472
## 10614                              1 3.891820 0.0000000 0.0000000
## 10615                              3 3.891820 4.7273878 0.0000000
## 10616                              1 5.501258 4.2341065 1.0986123
## 10617                              4 5.521461 4.0430513 3.4011974
## 10618                              4 4.007333 3.4965076 0.6931472
## 10619                              1 5.416100 5.2203558 0.6931472
## 10620                              1 4.219508 0.0000000 2.6390573
## 10621                              1 5.393628 4.3694479 1.7917595
## 10622                              1 4.317488 4.7621739 0.0000000
## 10623                              1 4.787492 0.6931472 0.6931472
## 10624                              2 4.859812 4.7874917 0.0000000
## 10625                              1 5.293305 2.3025851 1.3862944
## 10626                              2 4.521789 4.7874917 0.0000000
## 10627                              1 5.187386 3.2958369 0.6931472
## 10628                              2 4.382027 0.6931472 0.0000000
## 10629                              1 4.605170 1.6094379 0.6931472
## 10630                              1 4.094345 0.6931472 0.0000000
## 10631                              1 5.111988 2.0794415 0.6931472
## 10632                              1 4.744932 0.0000000 1.3862944
## 10633                              1 4.007333 1.7917595 0.0000000
## 10634                              1 4.330733 1.3862944 0.0000000
## 10635                              1 4.941642 0.0000000 2.9957323
## 10636                              1 5.010635 4.9558271 0.0000000
## 10637                              2 6.109248 2.4849066 1.0986123
## 10638                              1 4.653960 2.1972246 2.6390573
## 10639                              3 4.700480 2.9444390 1.0986123
## 10640                              1 6.109248 0.6931472 1.0986123
## 10641                              1 5.010635 5.6594822 0.0000000
## 10642                              1 4.382027 0.0000000 1.3862944
## 10643                              1 5.560682 0.0000000 0.0000000
## 10644                              1 4.442651 2.8332133 1.3862944
## 10645                              3 5.293305 4.5325995 0.6931472
## 10646                              1 4.905275 3.0445224 1.0986123
## 10647                              1 4.605170 3.2958369 1.0986123
## 10648                              3 4.595120 1.6094379 0.6931472
## 10649                              2 3.526361 2.8332133 1.6094379
## 10650                              1 4.488636 3.9889840 1.0986123
## 10651                              2 4.343805 4.7706846 0.0000000
## 10652                              1 5.247024 4.1588831 1.3862944
## 10653                              1 4.744932 2.1972246 0.6931472
## 10654                              4 3.688879 1.6094379 0.6931472
## 10655                              1 4.905275 0.0000000 1.9459101
## 10656                              1 4.595120 1.9459101 0.0000000
## 10657                              1 4.976734 4.1108739 0.6931472
## 10658                              1 5.855072 1.6094379 0.6931472
## 10659                              2 4.317488 1.3862944 1.6094379
## 10660                              1 5.298317 3.2188758 1.3862944
## 10661                              1 4.779123 0.0000000 0.0000000
## 10662                              1 4.174387 2.1972246 1.0986123
## 10663                              1 3.912023 0.6931472 1.0986123
## 10664                              1 5.293305 2.7080502 1.3862944
## 10665                              1 4.382027 0.0000000 0.0000000
## 10666                              1 4.007333 1.3862944 0.6931472
## 10667                              1 4.828314 1.6094379 0.0000000
## 10668                              1 5.459586 4.6728288 1.3862944
## 10669                              1 4.700480 0.0000000 1.6094379
## 10670                              2 4.787492 2.3025851 1.0986123
## 10671                              1 5.273000 0.0000000 1.0986123
## 10672                              2 4.691348 4.7273878 0.0000000
## 10673                              1 4.007333 0.6931472 1.9459101
## 10674                              1 5.010635 4.3307333 1.3862944
## 10675                              1 4.605170 1.3862944 0.6931472
## 10676                              1 5.043425 4.9272537 0.0000000
## 10677                              1 4.094345 2.3025851 1.0986123
## 10678                              1 4.442651 0.0000000 1.6094379
## 10679                              1 4.248495 1.6094379 0.6931472
## 10680                              1 3.912023 0.0000000 1.6094379
## 10681                              3 4.787492 0.0000000 1.0986123
## 10682                              1 4.317488 0.0000000 0.6931472
## 10683                              1 3.433987 0.0000000 0.6931472
## 10684                              2 4.369448 4.2484952 0.6931472
## 10685                              2 5.075174 0.6931472 5.0751738
## 10686                              2 4.595120 4.5643482 0.6931472
## 10687                              2 5.293305 1.6094379 0.6931472
## 10688                              1 5.560682 3.6375862 1.0986123
## 10689                              1 4.174387 0.0000000 2.3025851
## 10690                              1 4.094345 2.0794415 0.6931472
## 10691                              1 3.806662 0.0000000 3.2188758
## 10692                              1 4.094345 3.5263605 4.0943446
## 10693                              1 4.672829 2.9444390 1.0986123
## 10694                             96 5.438079 0.0000000 3.4011974
## 10695                              1 4.867534 3.6635616 1.0986123
## 10696                              3 4.442651 0.6931472 0.6931472
## 10697                              1 4.382027 2.8903718 0.6931472
## 10698                              1 4.430817 1.0986123 0.6931472
## 10699                              1 4.143135 2.7080502 1.0986123
## 10700                              1 3.806662 0.0000000 0.6931472
## 10701                              2 4.828314 5.1474945 0.6931472
## 10702                              2 5.075174 1.6094379 0.6931472
## 10703                              1 4.143135 3.0910425 0.6931472
## 10704                              1 4.828314 4.4426513 0.0000000
## 10705                              1 3.806662 0.0000000 1.0986123
## 10706                              1 4.744932 1.0986123 1.0986123
## 10707                              1 5.594711 4.9767337 1.0986123
## 10708                              1 4.007333 1.6094379 1.6094379
## 10709                              1 4.605170 2.3978953 1.3862944
## 10710                              1 4.077537 0.6931472 3.3322045
## 10711                              2 5.153292 5.1873858 0.6931472
## 10712                              2 4.744932 3.1780538 1.6094379
## 10713                              1 4.488636 0.0000000 0.0000000
## 10714                              2 4.248495 1.6094379 0.0000000
## 10715                              1 4.488636 3.9702919 0.6931472
## 10716                              2 4.094345 5.0106353 0.0000000
## 10717                              1 5.991465 0.6931472 0.0000000
## 10718                              4 4.499810 2.0794415 1.3862944
## 10719                              1 5.298317 2.0794415 0.6931472
## 10720                              1 4.174387 0.6931472 0.0000000
## 10721                             18 3.761200 1.0986123 3.4011974
## 10722                              1 4.007333 1.7917595 1.0986123
## 10723                              1 4.700480 4.8121844 0.0000000
## 10724                              1 4.976734 1.0986123 0.0000000
## 10725                              1 6.309918 4.9487599 0.0000000
## 10726                              4 4.077537 5.0498560 0.0000000
## 10727                              4 5.476464 2.0794415 1.0986123
## 10728                              4 3.891820 2.6390573 0.0000000
## 10729                              1 4.499810 5.3659760 0.6931472
## 10730                              1 4.382027 2.1972246 0.6931472
## 10731                              1 4.828314 3.7376696 1.0986123
## 10732                              2 4.174387 0.0000000 0.0000000
## 10733                              1 4.343805 4.1431347 1.3862944
## 10734                              1 5.393628 3.2580965 0.6931472
## 10735                              2 5.010635 1.3862944 3.6888795
## 10736                              2 5.298317 2.0794415 1.6094379
## 10737                              1 5.298317 1.6094379 0.0000000
## 10738                              2 4.499810 3.3322045 1.0986123
## 10739                              1 5.438079 0.0000000 0.0000000
## 10740                              1 4.007333 0.0000000 0.0000000
## 10741                              1 5.075174 0.0000000 0.6931472
## 10742                              1 3.828641 2.3978953 1.0986123
## 10743                              1 5.703782 2.5649494 0.6931472
## 10744                              1 4.605170 0.0000000 1.0986123
## 10745                              1 4.553877 0.0000000 2.4849066
## 10746                              1 4.219508 1.7917595 1.0986123
## 10747                              1 4.718499 2.5649494 1.3862944
## 10748                              2 4.442651 3.4657359 1.0986123
## 10749                              1 4.007333 3.8501476 1.3862944
## 10750                              2 4.442651 1.9459101 0.0000000
## 10751                              1 5.075174 3.9512437 1.0986123
## 10752                              1 5.043425 1.7917595 1.3862944
## 10753                              1 4.248495 0.0000000 0.6931472
## 10754                              1 5.220356 0.0000000 0.0000000
## 10755                              1 5.298317 0.0000000 1.9459101
## 10756                              1 4.248495 0.6931472 1.3862944
## 10757                              1 3.912023 0.6931472 0.0000000
## 10758                              1 4.442651 0.6931472 1.3862944
## 10759                              1 3.806662 1.6094379 0.6931472
## 10760                              1 4.691348 1.3862944 1.3862944
## 10761                              3 3.871201 4.7184989 0.6931472
## 10762                              1 5.010635 1.3862944 1.9459101
## 10763                              1 5.857933 2.1972246 0.6931472
## 10764                              1 4.605170 0.0000000 0.6931472
## 10765                              1 5.176150 4.9126549 0.0000000
## 10766                              1 4.682131 4.7095302 0.0000000
## 10767                              1 3.332205 0.0000000 2.3025851
## 10768                              1 3.555348 0.6931472 0.0000000
## 10769                              1 4.653960 0.6931472 1.9459101
## 10770                              1 4.553877 0.6931472 0.0000000
## 10771                              4 4.127134 3.1780538 0.6931472
## 10772                              1 5.010635 0.6931472 1.0986123
## 10773                              1 4.727388 3.6375862 1.9459101
## 10774                              1 5.703782 3.1780538 0.6931472
## 10775                              1 4.174387 1.3862944 0.6931472
## 10776                              1 4.007333 1.6094379 0.6931472
## 10777                              3 4.787492 5.0238805 1.0986123
## 10778                              1 5.075174 0.6931472 0.0000000
## 10779                              2 4.905275 2.3025851 0.6931472
## 10780                              2 5.164786 2.3978953 0.0000000
## 10781                              1 5.703782 3.9318256 0.6931472
## 10782                              1 4.382027 0.6931472 1.7917595
## 10783                             96 5.135798 0.0000000 3.4011974
## 10784                              1 4.442651 0.0000000 4.4998097
## 10785                              1 4.430817 0.6931472 2.3025851
## 10786                              1 5.988961 4.8598124 1.0986123
## 10787                              2 4.941642 4.6347290 1.0986123
## 10788                              1 5.347108 4.7449321 0.6931472
## 10789                              1 5.298317 1.0986123 1.0986123
## 10790                              1 5.298317 4.9972123 0.6931472
## 10791                              1 3.850148 0.6931472 0.6931472
## 10792                              1 3.912023 0.0000000 1.9459101
## 10793                              1 4.553877 2.1972246 0.6931472
## 10794                              1 5.634790 1.7917595 0.6931472
## 10795                              1 3.912023 1.6094379 1.0986123
## 10796                              2 5.298317 2.7725887 0.0000000
## 10797                              1 5.283204 2.8903718 1.0986123
## 10798                              1 4.787492 1.3862944 1.6094379
## 10799                              1 5.010635 0.0000000 1.6094379
## 10800                              5 3.555348 4.6443909 0.0000000
## 10801                              1 5.273000 2.9444390 1.0986123
## 10802                              5 4.828314 4.9487599 1.0986123
## 10803                              5 4.605170 0.6931472 3.4011974
## 10804                              1 4.828314 5.0434251 1.7917595
## 10805                             21 4.812184 2.3025851 3.4011974
## 10806                              1 4.553877 1.6094379 1.9459101
## 10807                              1 5.293305 0.0000000 1.3862944
## 10808                              1 3.806662 0.0000000 0.0000000
## 10809                              1 5.241747 1.3862944 1.0986123
## 10810                              2 3.912023 0.0000000 0.6931472
## 10811                              3 5.521461 2.3978953 0.0000000
## 10812                              1 4.553877 4.3040651 1.0986123
## 10813                              1 4.941642 1.6094379 0.0000000
## 10814                              1 4.787492 3.4965076 3.4011974
## 10815                              1 3.555348 0.6931472 0.0000000
## 10816                              1 5.273000 3.4011974 1.0986123
## 10817                              1 3.555348 0.0000000 0.0000000
## 10818                              1 5.521461 0.0000000 0.0000000
## 10819                              1 4.248495 0.6931472 1.9459101
## 10820                              1 5.068904 1.3862944 3.3322045
## 10821                              1 5.003946 2.5649494 1.9459101
## 10822                              1 5.192957 4.8675345 0.0000000
## 10823                              1 4.700480 5.2882670 0.0000000
## 10824                              1 4.605170 0.6931472 1.9459101
## 10825                              1 3.912023 2.3978953 1.9459101
## 10826                              1 6.052089 3.1354942 0.6931472
## 10827                              1 5.560682 2.7080502 1.3862944
## 10828                              1 6.212606 1.3862944 0.6931472
## 10829                              1 5.521461 1.0986123 1.0986123
## 10830                              1 5.857933 1.6094379 0.6931472
## 10831                              1 5.616771 1.0986123 1.6094379
## 10832                              1 5.703782 5.5909870 0.0000000
## 10833                              1 4.317488 1.6094379 1.0986123
## 10834                              2 4.983607 5.3375381 3.3322045
## 10835                              3 4.488636 2.9444390 0.0000000
## 10836                              1 4.317488 2.9444390 0.6931472
## 10837                              2 4.317488 0.0000000 0.0000000
## 10838                              2 4.624973 2.9957323 1.6094379
## 10839                              1 5.247024 4.7706846 0.6931472
## 10840                              1 4.248495 0.0000000 1.6094379
## 10841                              1 4.143135 1.7917595 1.0986123
## 10842                              1 4.605170 0.0000000 1.7917595
## 10843                              5 4.867534 3.8918203 0.6931472
## 10844                              2 4.499810 4.3174881 0.6931472
## 10845                              1 3.828641 2.8903718 0.6931472
## 10846                              2 4.744932 4.9558271 0.6931472
## 10847                              1 4.499810 4.6347290 0.0000000
## 10848                              1 5.521461 2.0794415 3.4339872
## 10849                              1 6.907755 2.3025851 1.3862944
## 10850                              1 5.068904 1.0986123 0.0000000
## 10851                              4 4.595120 3.1780538 1.0986123
## 10852                              1 4.605170 0.6931472 0.0000000
## 10853                              1 5.521461 2.5649494 1.3862944
## 10854                              1 4.787492 1.6094379 1.0986123
## 10855                              1 4.382027 0.0000000 1.0986123
## 10856                              1 3.806662 0.0000000 1.0986123
## 10857                              1 4.174387 0.6931472 0.0000000
## 10858                              1 3.912023 0.6931472 0.0000000
## 10859                              1 4.605170 0.0000000 0.6931472
## 10860                              1 5.298317 0.0000000 1.3862944
## 10861                              4 4.174387 2.0794415 1.9459101
## 10862                              1 4.867534 3.9512437 1.3862944
## 10863                              1 5.521461 2.5649494 3.4011974
## 10864                              1 4.605170 1.7917595 1.0986123
## 10865                              1 4.499810 1.0986123 1.6094379
## 10866                              1 4.499810 3.9889840 0.0000000
## 10867                              1 3.433987 0.6931472 1.0986123
## 10868                              1 3.806662 0.6931472 0.0000000
## 10869                              4 3.663562 1.7917595 1.9459101
## 10870                              4 3.663562 2.5649494 1.9459101
## 10871                              1 4.442651 0.0000000 1.6094379
## 10872                              3 3.688879 0.6931472 1.6094379
## 10873                              1 5.298317 0.0000000 0.6931472
## 10874                              3 4.867534 4.2046926 0.6931472
## 10875                              3 3.688879 5.0562458 0.6931472
## 10876                              1 4.859812 1.7917595 1.0986123
## 10877                              1 4.605170 1.9459101 0.0000000
## 10878                              2 4.605170 0.0000000 1.0986123
## 10879                              1 3.178054 0.0000000 2.8903718
## 10880                              1 5.075174 4.2484952 0.6931472
## 10881                              2 4.828314 2.5649494 1.6094379
## 10882                              1 5.323010 0.6931472 1.9459101
## 10883                              1 6.620073 4.5747110 1.0986123
## 10884                              3 4.317488 2.8903718 2.6390573
## 10885                             96 5.010635 0.0000000 3.4011974
## 10886                              2 5.273000 3.8712010 1.3862944
## 10887                              1 6.167516 0.0000000 0.6931472
## 10888                             96 5.616771 0.0000000 3.4011974
## 10889                              1 4.094345 0.0000000 0.0000000
## 10890                              1 4.852030 2.4849066 3.3322045
## 10891                              1 4.941642 1.9459101 1.6094379
## 10892                              1 4.584967 1.6094379 0.0000000
## 10893                              1 6.684612 3.4965076 1.0986123
## 10894                              2 4.867534 4.8978398 1.0986123
## 10895                              1 5.783825 4.3040651 1.0986123
## 10896                              1 4.969813 3.4011974 0.6931472
## 10897                              1 3.806662 0.6931472 0.0000000
## 10898                              1 4.317488 0.0000000 0.0000000
## 10899                              2 4.442651 3.1780538 1.3862944
## 10900                              1 3.912023 0.0000000 1.0986123
## 10901                              2 3.912023 0.0000000 2.3025851
## 10902                              1 4.094345 2.8332133 0.0000000
## 10903                              1 5.918894 3.1354942 1.0986123
## 10904                              1 4.317488 0.0000000 0.6931472
## 10905                              1 4.094345 0.0000000 0.0000000
## 10906                              1 3.367296 3.7376696 3.3322045
## 10907                              1 4.442651 4.4998097 0.0000000
## 10908                              3 4.094345 2.6390573 2.7080502
## 10909                              5 4.499810 2.8332133 0.6931472
## 10910                              1 4.248495 1.0986123 2.3025851
## 10911                              2 4.465908 4.8828019 0.0000000
## 10912                              5 4.605170 0.0000000 0.0000000
## 10913                              1 4.007333 2.0794415 1.3862944
## 10914                              1 4.934474 3.2580965 1.0986123
## 10915                              1 3.912023 0.6931472 1.3862944
## 10916                             96 5.560682 0.0000000 3.4011974
## 10917                              1 4.787492 1.0986123 0.6931472
## 10918                              1 4.499810 5.2311086 0.6931472
## 10919                             52 4.418841 1.0986123 3.4011974
## 10920                              1 3.401197 1.0986123 1.0986123
## 10921                              1 4.174387 0.0000000 0.0000000
## 10922                              1 4.941642 0.0000000 0.0000000
## 10923                              1 6.683361 2.7725887 1.0986123
## 10924                              1 4.605170 3.7376696 0.6931472
## 10925                              1 4.605170 0.0000000 1.0986123
## 10926                              1 4.317488 0.0000000 0.0000000
## 10927                              1 4.248495 0.6931472 2.1972246
## 10928                              1 4.976734 3.9318256 0.6931472
## 10929                              1 4.094345 1.3862944 1.0986123
## 10930                              1 4.248495 0.0000000 1.6094379
## 10931                              1 5.899897 4.6051702 1.7917595
## 10932                              1 5.192957 1.0986123 0.0000000
## 10933                              1 3.891820 0.6931472 1.9459101
## 10934                              2 5.105945 1.3862944 1.9459101
## 10935                              1 4.941642 4.8751973 0.6931472
## 10936                              4 4.276666 1.0986123 0.0000000
## 10937                             96 5.105945 0.6931472 3.4011974
## 10938                              1 4.718499 0.0000000 1.3862944
## 10939                              1 4.779123 1.0986123 1.0986123
## 10940                             96 5.075174 0.0000000 3.4011974
## 10941                              1 5.135798 1.7917595 0.6931472
## 10942                              1 6.902743 0.0000000 1.6094379
## 10943                              1 5.220356 3.1780538 0.6931472
## 10944                              2 3.871201 4.6051702 3.4011974
## 10945                              1 5.293305 4.9199809 0.6931472
## 10946                              1 4.382027 0.6931472 1.6094379
## 10947                              1 4.828314 1.6094379 1.7917595
## 10948                              1 4.127134 0.6931472 3.3322045
## 10949                              2 4.317488 0.6931472 0.0000000
## 10950                              1 4.382027 1.3862944 0.6931472
## 10951                              1 5.273000 0.0000000 0.6931472
## 10952                              1 4.219508 0.0000000 1.0986123
## 10953                              1 4.499810 1.6094379 0.6931472
## 10954                              1 5.298317 0.0000000 0.6931472
## 10955                              1 4.382027 3.3322045 0.0000000
## 10956                              1 4.828314 1.3862944 1.9459101
## 10957                              1 4.700480 1.7917595 0.0000000
## 10958                              1 5.293305 0.0000000 1.3862944
## 10959                              2 3.688879 0.0000000 0.0000000
## 10960                              1 4.174387 2.3025851 1.6094379
## 10961                              1 4.442651 0.0000000 0.0000000
## 10962                              2 4.234107 4.6728288 1.3862944
## 10963                              7 3.737670 5.3752784 0.0000000
## 10964                              1 4.787492 1.3862944 0.6931472
## 10965                              1 4.867534 2.8903718 0.6931472
## 10966                              1 5.347108 4.0775374 1.0986123
## 10967                              1 3.332205 1.0986123 2.6390573
## 10968                              1 4.094345 0.0000000 0.6931472
## 10969                              3 4.094345 4.7273878 0.0000000
## 10970                              1 4.941642 1.6094379 0.6931472
## 10971                              3 4.290459 4.3438054 1.0986123
## 10972                              3 4.204693 4.1271344 1.0986123
## 10973                              2 4.700480 4.2484952 1.6094379
## 10974                              1 4.382027 1.9459101 1.6094379
## 10975                              1 5.783825 2.8332133 1.0986123
## 10976                              1 3.784190 1.9459101 3.8501476
## 10977                              2 5.105945 3.5835189 1.0986123
## 10978                              1 3.401197 1.0986123 0.0000000
## 10979                              2 4.787492 2.1972246 0.6931472
## 10980                              1 4.779123 2.5649494 1.6094379
## 10981                              1 3.663562 0.6931472 2.3025851
## 10982                              2 4.605170 3.0445224 1.0986123
## 10983                              1 3.332205 0.0000000 0.0000000
## 10984                              1 5.003946 3.1780538 3.4339872
## 10985                              1 5.416100 1.9459101 1.3862944
## 10986                              1 3.806662 2.1972246 0.0000000
## 10987                              1 4.787492 0.0000000 1.3862944
## 10988                              1 4.595120 1.6094379 0.6931472
## 10989                              2 5.327876 3.5553481 0.0000000
## 10990                              2 4.787492 3.9512437 1.6094379
## 10991                              1 5.669881 4.0073332 0.6931472
## 10992                              1 4.382027 0.6931472 1.0986123
## 10993                              1 5.010635 2.7725887 3.4011974
## 10994                              3 4.382027 3.1354942 0.6931472
## 10995                              1 4.248495 1.3862944 1.7917595
## 10996                              2 4.867534 0.0000000 1.3862944
## 10997                              1 4.828314 2.3025851 2.1972246
## 10998                              1 5.010635 0.0000000 0.6931472
## 10999                              2 5.669881 0.0000000 1.7917595
## 11000                              1 5.010635 0.0000000 0.6931472
## 11001                              1 4.859812 1.6094379 1.9459101
## 11002                              1 4.158883 3.5835189 1.0986123
## 11003                              1 4.605170 0.0000000 1.0986123
## 11004                              1 4.094345 0.0000000 0.6931472
## 11005                              1 4.787492 2.1972246 0.6931472
## 11006                             96 5.192957 1.7917595 3.4011974
## 11007                              1 4.499810 3.6888795 1.0986123
## 11008                              1 5.298317 2.9957323 0.6931472
## 11009                              1 4.248495 1.0986123 0.0000000
## 11010                              1 4.499810 1.3862944 1.6094379
## 11011                              1 4.248495 4.1431347 0.6931472
## 11012                              1 4.543295 1.7917595 1.3862944
## 11013                              1 5.521461 1.0986123 0.6931472
## 11014                              2 4.442651 3.6109179 0.6931472
## 11015                              1 4.174387 4.5217886 0.6931472
## 11016                            121 5.910797 0.0000000 3.4011974
## 11017                              1 4.477337 4.7621739 1.0986123
## 11018                              1 4.174387 1.0986123 0.0000000
## 11019                              1 4.369448 2.5649494 0.0000000
## 11020                            121 5.476464 0.0000000 3.4011974
## 11021                              3 4.787492 4.2626799 1.0986123
## 11022                              1 5.164786 4.0073332 1.0986123
## 11023                              1 5.298317 0.6931472 1.6094379
## 11024                              1 4.634729 0.0000000 1.0986123
## 11025                              1 4.382027 0.0000000 0.0000000
## 11026                              1 4.094345 0.0000000 1.0986123
## 11027                              1 3.912023 1.3862944 0.6931472
## 11028                              3 6.052089 1.3862944 2.6390573
## 11029                              5 5.298317 0.0000000 0.0000000
## 11030                              1 5.703782 0.0000000 1.0986123
## 11031                              1 3.850148 0.6931472 1.3862944
## 11032                              1 5.298317 0.6931472 0.6931472
## 11033                              1 5.192957 1.6094379 1.9459101
## 11034                              1 5.598422 2.0794415 1.3862944
## 11035                              1 3.401197 0.0000000 2.0794415
## 11036                              2 5.135798 2.8332133 0.6931472
## 11037                              1 4.007333 0.0000000 1.9459101
## 11038                              1 3.401197 0.0000000 2.0794415
## 11039                            121 4.934474 0.0000000 3.4011974
## 11040                              2 4.615121 1.3862944 1.0986123
## 11041                              4 3.912023 3.4657359 0.6931472
## 11042                              1 3.637586 1.0986123 1.9459101
## 11043                              3 5.389072 1.0986123 3.4011974
## 11044                              1 5.616771 1.7917595 0.6931472
## 11045                            121 5.517453 0.0000000 3.4011974
## 11046                              1 4.605170 2.5649494 1.6094379
## 11047                              1 3.891820 0.6931472 0.0000000
## 11048                              2 5.010635 0.6931472 0.6931472
## 11049                              1 5.010635 0.0000000 0.0000000
## 11050                            121 5.247024 0.0000000 3.4011974
## 11051                              3 3.951244 4.9199809 0.6931472
## 11052                              1 4.488636 0.6931472 0.6931472
## 11053                            121 5.910797 1.0986123 3.4011974
## 11054                              1 4.499810 0.6931472 1.7917595
## 11055                              1 4.744932 2.0794415 0.6931472
## 11056                              1 4.189655 0.0000000 1.9459101
## 11057                              1 4.488636 3.1780538 0.6931472
## 11058                              1 4.543295 1.0986123 0.6931472
## 11059                              1 4.248495 0.6931472 2.7080502
## 11060                              4 4.499810 4.0775374 0.6931472
## 11061                              1 5.043425 0.0000000 0.0000000
## 11062                              2 4.174387 0.6931472 0.0000000
## 11063                              1 5.003946 0.0000000 0.0000000
## 11064                              4 4.248495 4.7273878 0.6931472
## 11065                              5 4.605170 0.0000000 0.6931472
## 11066                             31 5.010635 0.0000000 3.4011974
## 11067                              1 5.298317 4.5325995 1.0986123
## 11068                              1 3.912023 0.0000000 0.0000000
## 11069                              1 5.416100 3.3672958 0.6931472
## 11070                              3 3.555348 2.1972246 1.9459101
## 11071                              1 3.806662 0.0000000 1.3862944
## 11072                              1 4.941642 2.7725887 0.6931472
## 11073                              1 5.075174 3.0445224 2.5649494
## 11074                              3 3.555348 2.9444390 1.0986123
## 11075                              1 4.828314 1.9459101 0.6931472
## 11076                              1 5.075174 0.0000000 1.0986123
## 11077                              1 5.187386 1.6094379 0.6931472
## 11078                              1 4.248495 0.6931472 0.0000000
## 11079                              1 5.703782 4.6443909 1.3862944
## 11080                              1 5.023881 2.7725887 1.0986123
## 11081                              1 4.605170 1.3862944 0.0000000
## 11082                              1 5.298317 1.0986123 1.3862944
## 11083                              1 5.521461 2.9957323 1.9459101
## 11084                              1 5.298317 0.6931472 0.6931472
## 11085                              1 5.501258 0.0000000 0.6931472
## 11086                              3 4.369448 1.0986123 0.0000000
## 11087                              1 5.164786 0.0000000 0.0000000
## 11088                              1 4.934474 0.0000000 1.9459101
## 11089                              1 5.393628 3.2188758 0.6931472
## 11090                              1 4.248495 1.7917595 0.6931472
## 11091                              1 4.595120 5.2257467 0.0000000
## 11092                              2 4.787492 1.0986123 1.0986123
## 11093                              1 5.181784 2.4849066 0.6931472
## 11094                              1 4.820282 2.9957323 0.6931472
## 11095                              2 5.521461 1.6094379 1.9459101
## 11096                              2 5.926926 1.6094379 1.3862944
## 11097                              3 4.174387 2.3978953 3.3322045
## 11098                              1 4.094345 2.0794415 1.0986123
## 11099                              1 4.094345 0.0000000 0.0000000
## 11100                              1 3.806662 0.0000000 0.0000000
## 11101                              2 4.304065 0.0000000 0.0000000
## 11102                              2 3.912023 3.2580965 1.9459101
## 11103                              2 4.094345 1.0986123 0.0000000
## 11104                              1 5.010635 0.0000000 0.0000000
## 11105                              1 3.688879 4.5538769 0.0000000
## 11106                              1 4.787492 0.0000000 0.0000000
## 11107                              1 3.555348 0.0000000 0.0000000
## 11108                              1 4.442651 1.0986123 1.9459101
## 11109                              1 4.983607 3.2580965 0.6931472
## 11110                              1 4.595120 1.3862944 0.0000000
## 11111                              1 4.234107 0.0000000 0.6931472
##       llistings
## 1     1.7917595
## 2     0.6931472
## 3     0.0000000
## 4     0.0000000
## 5     0.0000000
## 6     0.0000000
## 7     0.0000000
## 8     0.0000000
## 9     1.3862944
## 10    0.0000000
## 11    0.0000000
## 12    1.0986123
## 13    0.0000000
## 14    0.0000000
## 15    0.0000000
## 16    0.0000000
## 17    0.0000000
## 18    0.0000000
## 19    0.0000000
## 20    1.7917595
## 21    1.7917595
## 22    1.7917595
## 23    0.6931472
## 24    0.6931472
## 25    0.0000000
## 26    1.0986123
## 27    0.0000000
## 28    1.0986123
## 29    0.0000000
## 30    1.0986123
## 31    1.0986123
## 32    0.6931472
## 33    1.0986123
## 34    0.6931472
## 35    1.3862944
## 36    0.6931472
## 37    0.0000000
## 38    0.0000000
## 39    0.0000000
## 40    0.0000000
## 41    0.0000000
## 42    0.0000000
## 43    0.0000000
## 44    0.0000000
## 45    0.6931472
## 46    1.0986123
## 47    0.0000000
## 48    0.0000000
## 49    0.0000000
## 50    0.0000000
## 51    0.0000000
## 52    0.0000000
## 53    0.6931472
## 54    1.0986123
## 55    0.0000000
## 56    0.0000000
## 57    0.0000000
## 58    0.6931472
## 59    0.6931472
## 60    0.6931472
## 61    0.0000000
## 62    0.0000000
## 63    0.6931472
## 64    0.0000000
## 65    0.6931472
## 66    0.0000000
## 67    0.0000000
## 68    0.0000000
## 69    0.6931472
## 70    0.0000000
## 71    0.0000000
## 72    0.0000000
## 73    0.0000000
## 74    0.0000000
## 75    0.0000000
## 76    1.3862944
## 77    0.0000000
## 78    0.0000000
## 79    0.0000000
## 80    0.0000000
## 81    0.0000000
## 82    0.0000000
## 83    0.0000000
## 84    0.0000000
## 85    1.3862944
## 86    0.0000000
## 87    0.0000000
## 88    1.7917595
## 89    0.0000000
## 90    0.0000000
## 91    0.6931472
## 92    0.0000000
## 93    0.0000000
## 94    0.6931472
## 95    0.6931472
## 96    1.0986123
## 97    1.0986123
## 98    0.0000000
## 99    0.6931472
## 100   0.0000000
## 101   0.0000000
## 102   0.6931472
## 103   0.0000000
## 104   0.0000000
## 105   0.0000000
## 106   0.6931472
## 107   1.7917595
## 108   0.0000000
## 109   0.6931472
## 110   1.3862944
## 111   0.0000000
## 112   0.0000000
## 113   0.0000000
## 114   1.3862944
## 115   1.0986123
## 116   0.0000000
## 117   0.6931472
## 118   0.0000000
## 119   0.0000000
## 120   0.0000000
## 121   0.0000000
## 122   0.0000000
## 123   0.0000000
## 124   0.6931472
## 125   1.0986123
## 126   0.0000000
## 127   0.0000000
## 128   0.0000000
## 129   0.0000000
## 130   1.0986123
## 131   0.0000000
## 132   0.0000000
## 133   1.0986123
## 134   0.6931472
## 135   1.0986123
## 136   0.0000000
## 137   0.0000000
## 138   0.0000000
## 139   0.0000000
## 140   0.6931472
## 141   0.0000000
## 142   0.0000000
## 143   0.0000000
## 144   1.3862944
## 145   1.6094379
## 146   0.0000000
## 147   0.0000000
## 148   0.0000000
## 149   0.0000000
## 150   0.0000000
## 151   0.0000000
## 152   0.0000000
## 153   0.6931472
## 154   0.0000000
## 155   0.6931472
## 156   0.6931472
## 157   0.0000000
## 158   0.6931472
## 159   0.0000000
## 160   0.0000000
## 161   0.0000000
## 162   0.0000000
## 163   1.0986123
## 164   1.0986123
## 165   0.0000000
## 166   0.0000000
## 167   1.0986123
## 168   0.0000000
## 169   1.3862944
## 170   0.0000000
## 171   0.6931472
## 172   0.0000000
## 173   1.0986123
## 174   0.0000000
## 175   0.0000000
## 176   0.6931472
## 177   1.6094379
## 178   0.6931472
## 179   0.0000000
## 180   0.0000000
## 181   1.3862944
## 182   1.0986123
## 183   0.0000000
## 184   0.0000000
## 185   0.0000000
## 186   0.0000000
## 187   0.0000000
## 188   1.0986123
## 189   0.0000000
## 190   0.0000000
## 191   0.6931472
## 192   0.0000000
## 193   0.0000000
## 194   1.6094379
## 195   1.6094379
## 196   1.6094379
## 197   0.6931472
## 198   0.0000000
## 199   1.0986123
## 200   1.6094379
## 201   1.0986123
## 202   0.0000000
## 203   0.0000000
## 204   0.0000000
## 205   0.0000000
## 206   0.0000000
## 207   0.6931472
## 208   0.0000000
## 209   0.0000000
## 210   0.0000000
## 211   1.6094379
## 212   0.0000000
## 213   0.0000000
## 214   0.0000000
## 215   0.0000000
## 216   0.0000000
## 217   0.0000000
## 218   0.6931472
## 219   0.6931472
## 220   0.0000000
## 221   0.0000000
## 222   0.0000000
## 223   1.6094379
## 224   0.0000000
## 225   0.6931472
## 226   0.0000000
## 227   0.0000000
## 228   0.0000000
## 229   0.6931472
## 230   1.6094379
## 231   0.0000000
## 232   0.0000000
## 233   0.0000000
## 234   1.0986123
## 235   0.0000000
## 236   0.0000000
## 237   0.6931472
## 238   0.6931472
## 239   0.0000000
## 240   0.0000000
## 241   0.0000000
## 242   0.0000000
## 243   1.7917595
## 244   1.7917595
## 245   1.7917595
## 246   0.6931472
## 247   0.6931472
## 248   1.0986123
## 249   0.6931472
## 250   1.7917595
## 251   0.0000000
## 252   0.6931472
## 253   0.6931472
## 254   2.5649494
## 255   0.6931472
## 256   0.6931472
## 257   1.3862944
## 258   1.3862944
## 259   0.0000000
## 260   1.3862944
## 261   0.0000000
## 262   0.6931472
## 263   0.0000000
## 264   0.6931472
## 265   0.0000000
## 266   0.0000000
## 267   0.0000000
## 268   0.0000000
## 269   0.0000000
## 270   0.0000000
## 271   0.0000000
## 272   0.0000000
## 273   1.6094379
## 274   0.0000000
## 275   1.0986123
## 276   0.0000000
## 277   0.0000000
## 278   0.6931472
## 279   0.6931472
## 280   0.0000000
## 281   0.0000000
## 282   0.0000000
## 283   0.6931472
## 284   0.0000000
## 285   0.6931472
## 286   0.0000000
## 287   1.0986123
## 288   0.0000000
## 289   0.0000000
## 290   0.0000000
## 291   0.0000000
## 292   0.0000000
## 293   0.0000000
## 294   1.3862944
## 295   0.6931472
## 296   0.0000000
## 297   0.0000000
## 298   0.0000000
## 299   0.6931472
## 300   0.0000000
## 301   0.0000000
## 302   0.0000000
## 303   0.6931472
## 304   1.0986123
## 305   0.0000000
## 306   0.0000000
## 307   0.0000000
## 308   0.6931472
## 309   0.0000000
## 310   1.0986123
## 311   3.3322045
## 312   0.0000000
## 313   0.0000000
## 314   0.0000000
## 315   1.7917595
## 316   0.0000000
## 317   3.3322045
## 318   3.3322045
## 319   0.6931472
## 320   3.3322045
## 321   0.6931472
## 322   0.6931472
## 323   0.0000000
## 324   0.0000000
## 325   0.0000000
## 326   0.0000000
## 327   0.0000000
## 328   0.0000000
## 329   3.3322045
## 330   0.0000000
## 331   0.0000000
## 332   0.6931472
## 333   1.6094379
## 334   0.6931472
## 335   1.3862944
## 336   0.6931472
## 337   0.6931472
## 338   0.0000000
## 339   0.0000000
## 340   0.0000000
## 341   0.0000000
## 342   1.0986123
## 343   1.0986123
## 344   0.0000000
## 345   0.6931472
## 346   0.0000000
## 347   0.0000000
## 348   0.0000000
## 349   0.0000000
## 350   0.0000000
## 351   0.0000000
## 352   0.0000000
## 353   3.3322045
## 354   0.6931472
## 355   0.0000000
## 356   1.6094379
## 357   0.6931472
## 358   0.0000000
## 359   1.0986123
## 360   0.0000000
## 361   0.0000000
## 362   0.0000000
## 363   0.0000000
## 364   0.0000000
## 365   0.6931472
## 366   0.6931472
## 367   0.0000000
## 368   0.6931472
## 369   1.0986123
## 370   0.0000000
## 371   0.0000000
## 372   0.0000000
## 373   0.0000000
## 374   1.3862944
## 375   0.0000000
## 376   0.0000000
## 377   0.0000000
## 378   0.0000000
## 379   0.0000000
## 380   0.6931472
## 381   0.6931472
## 382   0.0000000
## 383   0.6931472
## 384   0.6931472
## 385   1.0986123
## 386   0.0000000
## 387   0.0000000
## 388   1.6094379
## 389   0.0000000
## 390   1.0986123
## 391   0.0000000
## 392   0.0000000
## 393   0.0000000
## 394   0.0000000
## 395   0.6931472
## 396   0.6931472
## 397   0.0000000
## 398   0.0000000
## 399   0.0000000
## 400   0.0000000
## 401   0.0000000
## 402   0.0000000
## 403   0.0000000
## 404   0.0000000
## 405   0.0000000
## 406   0.0000000
## 407   0.0000000
## 408   0.0000000
## 409   0.0000000
## 410   0.0000000
## 411   0.0000000
## 412   0.0000000
## 413   0.0000000
## 414   0.6931472
## 415   0.0000000
## 416   0.0000000
## 417   0.0000000
## 418   0.0000000
## 419   0.0000000
## 420   0.0000000
## 421   1.3862944
## 422   0.0000000
## 423   1.6094379
## 424   1.0986123
## 425   1.0986123
## 426   0.0000000
## 427   0.0000000
## 428   1.0986123
## 429   0.0000000
## 430   0.0000000
## 431   1.3862944
## 432   0.0000000
## 433   0.6931472
## 434   0.0000000
## 435   0.0000000
## 436   1.0986123
## 437   1.0986123
## 438   0.0000000
## 439   0.0000000
## 440   0.0000000
## 441   1.0986123
## 442   0.0000000
## 443   0.0000000
## 444   0.0000000
## 445   0.0000000
## 446   1.0986123
## 447   0.6931472
## 448   1.0986123
## 449   1.0986123
## 450   0.0000000
## 451   0.0000000
## 452   0.6931472
## 453   1.0986123
## 454   0.0000000
## 455   0.0000000
## 456   0.0000000
## 457   0.0000000
## 458   0.6931472
## 459   0.0000000
## 460   1.7917595
## 461   0.0000000
## 462   0.0000000
## 463   0.0000000
## 464   0.6931472
## 465   0.0000000
## 466   0.6931472
## 467   0.0000000
## 468   0.0000000
## 469   0.6931472
## 470   0.0000000
## 471   0.6931472
## 472   0.6931472
## 473   0.6931472
## 474   0.6931472
## 475   0.0000000
## 476   0.0000000
## 477   0.0000000
## 478   0.0000000
## 479   2.3978953
## 480   0.0000000
## 481   0.6931472
## 482   0.0000000
## 483   0.6931472
## 484   0.0000000
## 485   0.0000000
## 486   0.0000000
## 487   1.0986123
## 488   2.0794415
## 489   2.0794415
## 490   0.0000000
## 491   0.0000000
## 492   0.6931472
## 493   0.6931472
## 494   0.0000000
## 495   0.0000000
## 496   0.0000000
## 497   0.6931472
## 498   0.0000000
## 499   0.0000000
## 500   0.0000000
## 501   0.0000000
## 502   0.0000000
## 503   0.0000000
## 504   0.0000000
## 505   0.0000000
## 506   0.0000000
## 507   0.0000000
## 508   0.0000000
## 509   0.0000000
## 510   0.6931472
## 511   0.6931472
## 512   0.0000000
## 513   0.0000000
## 514   0.6931472
## 515   0.0000000
## 516   0.0000000
## 517   0.6931472
## 518   0.6931472
## 519   0.0000000
## 520   0.0000000
## 521   0.6931472
## 522   0.0000000
## 523   0.0000000
## 524   0.6931472
## 525   0.0000000
## 526   0.6931472
## 527   0.0000000
## 528   0.0000000
## 529   0.0000000
## 530   1.0986123
## 531   0.0000000
## 532   1.7917595
## 533   0.0000000
## 534   0.6931472
## 535   0.0000000
## 536   0.0000000
## 537   0.0000000
## 538   0.0000000
## 539   0.6931472
## 540   0.0000000
## 541   0.0000000
## 542   0.6931472
## 543   0.0000000
## 544   1.0986123
## 545   0.0000000
## 546   1.0986123
## 547   0.0000000
## 548   0.0000000
## 549   0.0000000
## 550   0.0000000
## 551   0.0000000
## 552   0.0000000
## 553   0.0000000
## 554   1.0986123
## 555   2.0794415
## 556   1.0986123
## 557   0.0000000
## 558   0.0000000
## 559   0.0000000
## 560   0.6931472
## 561   0.6931472
## 562   0.6931472
## 563   0.0000000
## 564   0.0000000
## 565   1.0986123
## 566   0.0000000
## 567   0.0000000
## 568   0.6931472
## 569   1.7917595
## 570   0.0000000
## 571   0.0000000
## 572   0.6931472
## 573   0.6931472
## 574   0.0000000
## 575   0.0000000
## 576   1.0986123
## 577   0.6931472
## 578   2.3978953
## 579   0.0000000
## 580   0.6931472
## 581   1.3862944
## 582   0.0000000
## 583   0.0000000
## 584   0.0000000
## 585   0.0000000
## 586   0.0000000
## 587   0.0000000
## 588   1.0986123
## 589   0.0000000
## 590   0.0000000
## 591   0.6931472
## 592   0.6931472
## 593   0.0000000
## 594   0.0000000
## 595   0.0000000
## 596   0.0000000
## 597   0.0000000
## 598   0.0000000
## 599   0.0000000
## 600   0.0000000
## 601   1.0986123
## 602   0.0000000
## 603   0.6931472
## 604   0.0000000
## 605   0.0000000
## 606   1.0986123
## 607   0.0000000
## 608   1.3862944
## 609   0.0000000
## 610   0.0000000
## 611   0.0000000
## 612   0.0000000
## 613   0.0000000
## 614   0.0000000
## 615   2.3978953
## 616   0.0000000
## 617   0.0000000
## 618   2.3978953
## 619   0.0000000
## 620   0.0000000
## 621   0.0000000
## 622   0.0000000
## 623   0.6931472
## 624   0.0000000
## 625   0.0000000
## 626   0.0000000
## 627   0.0000000
## 628   0.6931472
## 629   0.0000000
## 630   3.3322045
## 631   1.3862944
## 632   0.0000000
## 633   0.0000000
## 634   1.3862944
## 635   0.0000000
## 636   0.0000000
## 637   0.6931472
## 638   0.0000000
## 639   0.0000000
## 640   0.0000000
## 641   0.6931472
## 642   0.6931472
## 643   0.0000000
## 644   3.3322045
## 645   3.3322045
## 646   3.3322045
## 647   0.0000000
## 648   0.0000000
## 649   0.0000000
## 650   3.3322045
## 651   3.3322045
## 652   3.3322045
## 653   3.3322045
## 654   3.3322045
## 655   3.3322045
## 656   3.3322045
## 657   3.3322045
## 658   3.3322045
## 659   1.0986123
## 660   3.3322045
## 661   0.0000000
## 662   0.0000000
## 663   0.0000000
## 664   0.0000000
## 665   0.6931472
## 666   0.6931472
## 667   0.0000000
## 668   0.0000000
## 669   0.0000000
## 670   0.6931472
## 671   0.6931472
## 672   0.0000000
## 673   0.0000000
## 674   0.0000000
## 675   0.0000000
## 676   0.0000000
## 677   0.0000000
## 678   1.3862944
## 679   1.3862944
## 680   0.6931472
## 681   0.6931472
## 682   0.0000000
## 683   0.0000000
## 684   0.0000000
## 685   0.0000000
## 686   0.0000000
## 687   0.0000000
## 688   0.0000000
## 689   0.0000000
## 690   1.3862944
## 691   0.0000000
## 692   0.6931472
## 693   0.0000000
## 694   0.0000000
## 695   0.6931472
## 696   0.0000000
## 697   0.6931472
## 698   0.0000000
## 699   0.6931472
## 700   0.0000000
## 701   0.0000000
## 702   0.0000000
## 703   1.6094379
## 704   1.6094379
## 705   0.0000000
## 706   0.0000000
## 707   0.0000000
## 708   0.0000000
## 709   0.0000000
## 710   0.0000000
## 711   0.0000000
## 712   0.6931472
## 713   0.0000000
## 714   0.0000000
## 715   0.0000000
## 716   0.0000000
## 717   0.0000000
## 718   1.0986123
## 719   0.6931472
## 720   1.0986123
## 721   0.0000000
## 722   0.6931472
## 723   0.6931472
## 724   0.0000000
## 725   0.6931472
## 726   0.6931472
## 727   0.0000000
## 728   0.0000000
## 729   0.0000000
## 730   0.0000000
## 731   0.0000000
## 732   0.0000000
## 733   0.0000000
## 734   0.6931472
## 735   1.3862944
## 736   0.0000000
## 737   0.6931472
## 738   0.0000000
## 739   0.0000000
## 740   0.0000000
## 741   0.0000000
## 742   0.0000000
## 743   0.6931472
## 744   1.0986123
## 745   0.0000000
## 746   0.0000000
## 747   0.0000000
## 748   0.0000000
## 749   0.0000000
## 750   0.0000000
## 751   0.0000000
## 752   0.0000000
## 753   0.6931472
## 754   0.0000000
## 755   0.0000000
## 756   0.0000000
## 757   0.0000000
## 758   0.0000000
## 759   0.0000000
## 760   0.0000000
## 761   0.0000000
## 762   0.0000000
## 763   0.6931472
## 764   0.6931472
## 765   0.0000000
## 766   0.6931472
## 767   0.0000000
## 768   0.0000000
## 769   0.0000000
## 770   0.0000000
## 771   0.0000000
## 772   0.0000000
## 773   1.0986123
## 774   0.0000000
## 775   0.0000000
## 776   0.0000000
## 777   0.6931472
## 778   0.0000000
## 779   0.0000000
## 780   0.0000000
## 781   0.0000000
## 782   0.0000000
## 783   0.0000000
## 784   0.0000000
## 785   0.0000000
## 786   0.0000000
## 787   0.0000000
## 788   0.0000000
## 789   0.0000000
## 790   0.0000000
## 791   0.0000000
## 792   0.0000000
## 793   0.6931472
## 794   0.6931472
## 795   3.3322045
## 796   0.0000000
## 797   3.3322045
## 798   0.0000000
## 799   3.3322045
## 800   3.3322045
## 801   3.3322045
## 802   0.0000000
## 803   1.7917595
## 804   3.3322045
## 805   0.0000000
## 806   0.6931472
## 807   0.0000000
## 808   0.0000000
## 809   0.6931472
## 810   0.6931472
## 811   0.0000000
## 812   1.0986123
## 813   1.0986123
## 814   0.0000000
## 815   0.0000000
## 816   0.0000000
## 817   1.3862944
## 818   0.0000000
## 819   0.6931472
## 820   0.0000000
## 821   0.0000000
## 822   0.0000000
## 823   0.0000000
## 824   0.0000000
## 825   0.0000000
## 826   0.6931472
## 827   0.0000000
## 828   0.0000000
## 829   0.0000000
## 830   0.0000000
## 831   0.0000000
## 832   1.0986123
## 833   1.0986123
## 834   0.0000000
## 835   1.6094379
## 836   0.0000000
## 837   0.0000000
## 838   0.0000000
## 839   0.0000000
## 840   2.1972246
## 841   0.0000000
## 842   0.6931472
## 843   0.0000000
## 844   0.0000000
## 845   0.0000000
## 846   0.0000000
## 847   0.6931472
## 848   0.6931472
## 849   0.0000000
## 850   0.0000000
## 851   0.0000000
## 852   0.0000000
## 853   0.0000000
## 854   0.0000000
## 855   0.0000000
## 856   0.6931472
## 857   0.0000000
## 858   0.0000000
## 859   0.6931472
## 860   0.0000000
## 861   0.0000000
## 862   0.6931472
## 863   0.0000000
## 864   1.7917595
## 865   0.0000000
## 866   0.0000000
## 867   0.0000000
## 868   0.0000000
## 869   0.0000000
## 870   0.0000000
## 871   0.0000000
## 872   0.6931472
## 873   0.6931472
## 874   1.0986123
## 875   0.0000000
## 876   0.0000000
## 877   1.3862944
## 878   1.3862944
## 879   1.3862944
## 880   0.0000000
## 881   0.0000000
## 882   0.6931472
## 883   0.0000000
## 884   0.6931472
## 885   0.0000000
## 886   0.6931472
## 887   0.6931472
## 888   0.0000000
## 889   0.0000000
## 890   0.0000000
## 891   0.0000000
## 892   0.0000000
## 893   0.6931472
## 894   0.0000000
## 895   0.0000000
## 896   0.0000000
## 897   0.0000000
## 898   1.0986123
## 899   2.1972246
## 900   0.0000000
## 901   0.0000000
## 902   0.0000000
## 903   0.0000000
## 904   0.0000000
## 905   0.0000000
## 906   0.6931472
## 907   0.0000000
## 908   1.3862944
## 909   0.0000000
## 910   0.0000000
## 911   0.0000000
## 912   0.0000000
## 913   1.0986123
## 914   0.0000000
## 915   0.0000000
## 916   0.0000000
## 917   0.6931472
## 918   0.6931472
## 919   0.0000000
## 920   0.0000000
## 921   0.0000000
## 922   0.6931472
## 923   0.0000000
## 924   1.0986123
## 925   1.0986123
## 926   0.0000000
## 927   0.0000000
## 928   0.0000000
## 929   0.0000000
## 930   0.0000000
## 931   0.0000000
## 932   0.0000000
## 933   1.3862944
## 934   0.0000000
## 935   1.3862944
## 936   0.6931472
## 937   0.6931472
## 938   0.0000000
## 939   1.3862944
## 940   0.0000000
## 941   0.0000000
## 942   0.0000000
## 943   0.6931472
## 944   0.6931472
## 945   0.0000000
## 946   0.0000000
## 947   0.0000000
## 948   0.0000000
## 949   0.0000000
## 950   0.0000000
## 951   0.0000000
## 952   0.0000000
## 953   0.0000000
## 954   0.6931472
## 955   0.0000000
## 956   1.0986123
## 957   0.6931472
## 958   0.0000000
## 959   1.0986123
## 960   0.0000000
## 961   0.0000000
## 962   0.0000000
## 963   0.0000000
## 964   0.0000000
## 965   2.0794415
## 966   0.0000000
## 967   0.6931472
## 968   1.0986123
## 969   0.0000000
## 970   0.6931472
## 971   0.6931472
## 972   1.0986123
## 973   0.6931472
## 974   0.0000000
## 975   0.0000000
## 976   0.0000000
## 977   0.0000000
## 978   1.3862944
## 979   0.0000000
## 980   0.6931472
## 981   0.6931472
## 982   0.0000000
## 983   0.0000000
## 984   0.0000000
## 985   0.6931472
## 986   0.0000000
## 987   0.0000000
## 988   0.0000000
## 989   0.0000000
## 990   0.0000000
## 991   0.0000000
## 992   0.0000000
## 993   0.6931472
## 994   0.0000000
## 995   0.0000000
## 996   0.6931472
## 997   0.0000000
## 998   0.0000000
## 999   0.0000000
## 1000  0.0000000
## 1001  0.0000000
## 1002  0.0000000
## 1003  0.0000000
## 1004  0.0000000
## 1005  0.0000000
## 1006  0.0000000
## 1007  0.0000000
## 1008  0.6931472
## 1009  0.0000000
## 1010  0.0000000
## 1011  0.0000000
## 1012  0.0000000
## 1013  0.0000000
## 1014  0.0000000
## 1015  0.0000000
## 1016  0.0000000
## 1017  0.6931472
## 1018  0.0000000
## 1019  0.0000000
## 1020  0.0000000
## 1021  1.0986123
## 1022  1.0986123
## 1023  1.0986123
## 1024  1.0986123
## 1025  0.0000000
## 1026  0.0000000
## 1027  0.0000000
## 1028  1.0986123
## 1029  0.0000000
## 1030  0.6931472
## 1031  0.0000000
## 1032  0.0000000
## 1033  1.0986123
## 1034  0.0000000
## 1035  0.0000000
## 1036  1.0986123
## 1037  0.0000000
## 1038  0.0000000
## 1039  0.0000000
## 1040  0.0000000
## 1041  1.0986123
## 1042  0.0000000
## 1043  0.6931472
## 1044  0.0000000
## 1045  0.0000000
## 1046  0.0000000
## 1047  0.6931472
## 1048  0.0000000
## 1049  0.0000000
## 1050  0.0000000
## 1051  0.0000000
## 1052  0.0000000
## 1053  0.0000000
## 1054  0.0000000
## 1055  1.0986123
## 1056  1.0986123
## 1057  0.6931472
## 1058  0.0000000
## 1059  0.0000000
## 1060  0.0000000
## 1061  0.0000000
## 1062  0.0000000
## 1063  1.3862944
## 1064  0.0000000
## 1065  0.0000000
## 1066  0.0000000
## 1067  0.0000000
## 1068  0.0000000
## 1069  0.0000000
## 1070  0.0000000
## 1071  0.0000000
## 1072  0.0000000
## 1073  0.6931472
## 1074  0.0000000
## 1075  0.0000000
## 1076  1.7917595
## 1077  1.7917595
## 1078  1.7917595
## 1079  0.0000000
## 1080  0.6931472
## 1081  0.0000000
## 1082  0.0000000
## 1083  0.0000000
## 1084  0.0000000
## 1085  0.0000000
## 1086  0.0000000
## 1087  0.0000000
## 1088  0.6931472
## 1089  0.0000000
## 1090  0.0000000
## 1091  1.9459101
## 1092  0.6931472
## 1093  1.3862944
## 1094  0.0000000
## 1095  0.0000000
## 1096  0.0000000
## 1097  0.0000000
## 1098  0.0000000
## 1099  0.6931472
## 1100  0.6931472
## 1101  0.0000000
## 1102  0.0000000
## 1103  0.0000000
## 1104  0.0000000
## 1105  0.6931472
## 1106  0.0000000
## 1107  0.0000000
## 1108  0.0000000
## 1109  0.0000000
## 1110  0.0000000
## 1111  0.0000000
## 1112  0.0000000
## 1113  0.6931472
## 1114  0.0000000
## 1115  0.6931472
## 1116  0.6931472
## 1117  0.0000000
## 1118  0.0000000
## 1119  0.0000000
## 1120  0.0000000
## 1121  0.0000000
## 1122  0.0000000
## 1123  0.6931472
## 1124  0.0000000
## 1125  0.0000000
## 1126  0.0000000
## 1127  0.6931472
## 1128  1.6094379
## 1129  0.0000000
## 1130  0.0000000
## 1131  0.0000000
## 1132  0.0000000
## 1133  0.0000000
## 1134  0.0000000
## 1135  0.0000000
## 1136  0.0000000
## 1137  0.0000000
## 1138  0.0000000
## 1139  0.0000000
## 1140  0.0000000
## 1141  0.0000000
## 1142  0.6931472
## 1143  2.0794415
## 1144  0.0000000
## 1145  0.6931472
## 1146  1.3862944
## 1147  0.0000000
## 1148  0.0000000
## 1149  0.0000000
## 1150  0.0000000
## 1151  0.0000000
## 1152  0.0000000
## 1153  0.0000000
## 1154  0.0000000
## 1155  0.0000000
## 1156  0.0000000
## 1157  0.0000000
## 1158  0.6931472
## 1159  0.0000000
## 1160  0.0000000
## 1161  0.0000000
## 1162  0.0000000
## 1163  0.0000000
## 1164  0.0000000
## 1165  0.0000000
## 1166  0.6931472
## 1167  1.0986123
## 1168  0.0000000
## 1169  0.6931472
## 1170  0.0000000
## 1171  0.0000000
## 1172  0.0000000
## 1173  0.0000000
## 1174  0.0000000
## 1175  0.6931472
## 1176  0.0000000
## 1177  0.0000000
## 1178  0.0000000
## 1179  0.0000000
## 1180  0.0000000
## 1181  0.0000000
## 1182  0.0000000
## 1183  0.0000000
## 1184  0.0000000
## 1185  0.0000000
## 1186  0.6931472
## 1187  0.6931472
## 1188  0.0000000
## 1189  0.0000000
## 1190  0.0000000
## 1191  0.0000000
## 1192  0.0000000
## 1193  0.0000000
## 1194  0.0000000
## 1195  1.0986123
## 1196  0.0000000
## 1197  0.0000000
## 1198  1.7917595
## 1199  0.6931472
## 1200  0.0000000
## 1201  0.0000000
## 1202  0.0000000
## 1203  0.0000000
## 1204  0.0000000
## 1205  0.0000000
## 1206  0.6931472
## 1207  0.6931472
## 1208  0.0000000
## 1209  0.6931472
## 1210  0.0000000
## 1211  0.6931472
## 1212  1.7917595
## 1213  0.6931472
## 1214  0.0000000
## 1215  0.0000000
## 1216  0.0000000
## 1217  0.0000000
## 1218  1.0986123
## 1219  1.0986123
## 1220  0.0000000
## 1221  0.0000000
## 1222  0.0000000
## 1223  0.0000000
## 1224  0.0000000
## 1225  0.0000000
## 1226  0.0000000
## 1227  0.0000000
## 1228  0.0000000
## 1229  1.0986123
## 1230  0.6931472
## 1231  0.0000000
## 1232  0.0000000
## 1233  0.0000000
## 1234  0.0000000
## 1235  0.0000000
## 1236  0.0000000
## 1237  0.0000000
## 1238  0.0000000
## 1239  0.0000000
## 1240  0.0000000
## 1241  0.0000000
## 1242  0.0000000
## 1243  0.0000000
## 1244  0.0000000
## 1245  1.0986123
## 1246  0.0000000
## 1247  0.0000000
## 1248  0.0000000
## 1249  0.0000000
## 1250  0.0000000
## 1251  1.0986123
## 1252  0.0000000
## 1253  0.0000000
## 1254  1.0986123
## 1255  0.6931472
## 1256  2.0794415
## 1257  0.0000000
## 1258  1.6094379
## 1259  0.0000000
## 1260  0.0000000
## 1261  0.0000000
## 1262  0.0000000
## 1263  0.0000000
## 1264  0.0000000
## 1265  0.0000000
## 1266  0.0000000
## 1267  0.0000000
## 1268  0.0000000
## 1269  0.0000000
## 1270  0.0000000
## 1271  0.0000000
## 1272  0.0000000
## 1273  0.0000000
## 1274  0.0000000
## 1275  0.0000000
## 1276  0.0000000
## 1277  0.0000000
## 1278  0.0000000
## 1279  0.0000000
## 1280  0.6931472
## 1281  1.3862944
## 1282  0.0000000
## 1283  0.0000000
## 1284  0.0000000
## 1285  0.6931472
## 1286  0.0000000
## 1287  0.6931472
## 1288  0.0000000
## 1289  0.0000000
## 1290  0.0000000
## 1291  0.0000000
## 1292  0.0000000
## 1293  0.0000000
## 1294  0.0000000
## 1295  0.0000000
## 1296  0.0000000
## 1297  0.6931472
## 1298  0.6931472
## 1299  0.0000000
## 1300  0.0000000
## 1301  0.0000000
## 1302  0.0000000
## 1303  0.0000000
## 1304  0.0000000
## 1305  0.0000000
## 1306  0.0000000
## 1307  0.0000000
## 1308  0.0000000
## 1309  0.0000000
## 1310  1.0986123
## 1311  0.0000000
## 1312  0.0000000
## 1313  0.0000000
## 1314  0.0000000
## 1315  0.0000000
## 1316  0.0000000
## 1317  1.0986123
## 1318  0.0000000
## 1319  0.0000000
## 1320  0.0000000
## 1321  0.6931472
## 1322  0.0000000
## 1323  0.0000000
## 1324  0.0000000
## 1325  0.0000000
## 1326  0.0000000
## 1327  0.6931472
## 1328  3.9512437
## 1329  1.3862944
## 1330  0.0000000
## 1331  0.6931472
## 1332  0.0000000
## 1333  0.6931472
## 1334  0.6931472
## 1335  0.0000000
## 1336  0.0000000
## 1337  0.6931472
## 1338  0.0000000
## 1339  0.0000000
## 1340  0.0000000
## 1341  0.0000000
## 1342  0.0000000
## 1343  0.0000000
## 1344  0.0000000
## 1345  0.0000000
## 1346  0.0000000
## 1347  0.0000000
## 1348  0.0000000
## 1349  0.6931472
## 1350  0.0000000
## 1351  2.3978953
## 1352  0.0000000
## 1353  0.0000000
## 1354  0.6931472
## 1355  0.0000000
## 1356  0.0000000
## 1357  0.0000000
## 1358  0.0000000
## 1359  0.0000000
## 1360  0.0000000
## 1361  0.0000000
## 1362  0.0000000
## 1363  0.0000000
## 1364  0.0000000
## 1365  0.6931472
## 1366  0.6931472
## 1367  0.0000000
## 1368  1.0986123
## 1369  0.0000000
## 1370  0.0000000
## 1371  0.6931472
## 1372  0.6931472
## 1373  0.0000000
## 1374  0.0000000
## 1375  0.6931472
## 1376  0.0000000
## 1377  0.0000000
## 1378  0.0000000
## 1379  0.0000000
## 1380  0.6931472
## 1381  0.0000000
## 1382  0.0000000
## 1383  0.0000000
## 1384  0.0000000
## 1385  0.0000000
## 1386  0.0000000
## 1387  0.0000000
## 1388  0.0000000
## 1389  0.0000000
## 1390  3.9512437
## 1391  3.9512437
## 1392  3.9512437
## 1393  3.9512437
## 1394  3.9512437
## 1395  0.0000000
## 1396  0.0000000
## 1397  0.0000000
## 1398  0.0000000
## 1399  0.0000000
## 1400  0.0000000
## 1401  0.0000000
## 1402  0.0000000
## 1403  0.0000000
## 1404  0.6931472
## 1405  0.6931472
## 1406  0.6931472
## 1407  0.0000000
## 1408  0.0000000
## 1409  0.0000000
## 1410  0.0000000
## 1411  0.0000000
## 1412  0.0000000
## 1413  0.0000000
## 1414  0.0000000
## 1415  0.0000000
## 1416  2.3978953
## 1417  0.0000000
## 1418  0.0000000
## 1419  0.0000000
## 1420  0.0000000
## 1421  0.0000000
## 1422  0.0000000
## 1423  0.0000000
## 1424  1.0986123
## 1425  0.6931472
## 1426  0.6931472
## 1427  1.0986123
## 1428  0.0000000
## 1429  0.0000000
## 1430  0.6931472
## 1431  1.0986123
## 1432  0.0000000
## 1433  0.0000000
## 1434  0.0000000
## 1435  0.6931472
## 1436  0.0000000
## 1437  0.0000000
## 1438  0.0000000
## 1439  0.6931472
## 1440  0.6931472
## 1441  1.0986123
## 1442  0.0000000
## 1443  0.6931472
## 1444  0.6931472
## 1445  0.0000000
## 1446  0.0000000
## 1447  1.0986123
## 1448  0.6931472
## 1449  1.7917595
## 1450  1.7917595
## 1451  0.0000000
## 1452  0.0000000
## 1453  0.0000000
## 1454  0.6931472
## 1455  0.0000000
## 1456  0.0000000
## 1457  0.6931472
## 1458  0.0000000
## 1459  1.0986123
## 1460  0.0000000
## 1461  0.0000000
## 1462  0.0000000
## 1463  0.6931472
## 1464  0.6931472
## 1465  0.0000000
## 1466  0.0000000
## 1467  0.0000000
## 1468  0.0000000
## 1469  0.0000000
## 1470  0.0000000
## 1471  0.0000000
## 1472  0.0000000
## 1473  0.6931472
## 1474  0.0000000
## 1475  0.6931472
## 1476  0.0000000
## 1477  0.0000000
## 1478  1.0986123
## 1479  0.6931472
## 1480  0.0000000
## 1481  0.6931472
## 1482  0.6931472
## 1483  0.0000000
## 1484  0.0000000
## 1485  0.6931472
## 1486  0.6931472
## 1487  0.0000000
## 1488  0.6931472
## 1489  0.0000000
## 1490  1.0986123
## 1491  1.0986123
## 1492  0.6931472
## 1493  0.6931472
## 1494  1.0986123
## 1495  0.0000000
## 1496  0.0000000
## 1497  0.0000000
## 1498  0.6931472
## 1499  0.0000000
## 1500  0.0000000
## 1501  0.0000000
## 1502  0.0000000
## 1503  0.6931472
## 1504  0.0000000
## 1505  0.6931472
## 1506  0.0000000
## 1507  1.0986123
## 1508  1.0986123
## 1509  0.6931472
## 1510  0.0000000
## 1511  0.6931472
## 1512  1.3862944
## 1513  0.0000000
## 1514  1.3862944
## 1515  0.0000000
## 1516  0.0000000
## 1517  0.0000000
## 1518  0.6931472
## 1519  0.6931472
## 1520  0.0000000
## 1521  0.0000000
## 1522  0.6931472
## 1523  0.0000000
## 1524  0.0000000
## 1525  0.0000000
## 1526  0.6931472
## 1527  0.0000000
## 1528  0.6931472
## 1529  0.0000000
## 1530  1.0986123
## 1531  0.0000000
## 1532  3.3322045
## 1533  3.3322045
## 1534  0.6931472
## 1535  0.0000000
## 1536  0.6931472
## 1537  0.0000000
## 1538  0.0000000
## 1539  3.9512437
## 1540  0.0000000
## 1541  0.0000000
## 1542  0.0000000
## 1543  0.0000000
## 1544  0.6931472
## 1545  0.0000000
## 1546  0.0000000
## 1547  0.0000000
## 1548  0.0000000
## 1549  0.0000000
## 1550  0.0000000
## 1551  1.0986123
## 1552  1.0986123
## 1553  0.0000000
## 1554  1.3862944
## 1555  2.0794415
## 1556  2.0794415
## 1557  0.0000000
## 1558  0.0000000
## 1559  3.9512437
## 1560  0.0000000
## 1561  0.0000000
## 1562  0.0000000
## 1563  0.0000000
## 1564  0.0000000
## 1565  0.0000000
## 1566  0.0000000
## 1567  0.0000000
## 1568  0.0000000
## 1569  1.0986123
## 1570  0.0000000
## 1571  0.0000000
## 1572  0.0000000
## 1573  0.0000000
## 1574  0.0000000
## 1575  0.0000000
## 1576  0.0000000
## 1577  0.0000000
## 1578  0.0000000
## 1579  0.0000000
## 1580  0.0000000
## 1581  0.0000000
## 1582  0.0000000
## 1583  1.3862944
## 1584  0.0000000
## 1585  0.0000000
## 1586  0.0000000
## 1587  0.0000000
## 1588  0.0000000
## 1589  0.0000000
## 1590  0.0000000
## 1591  0.6931472
## 1592  0.0000000
## 1593  0.0000000
## 1594  0.0000000
## 1595  0.0000000
## 1596  0.6931472
## 1597  2.8903718
## 1598  1.3862944
## 1599  0.0000000
## 1600  0.0000000
## 1601  0.0000000
## 1602  0.0000000
## 1603  0.0000000
## 1604  0.0000000
## 1605  0.0000000
## 1606  0.0000000
## 1607  0.0000000
## 1608  0.0000000
## 1609  0.0000000
## 1610  1.0986123
## 1611  0.6931472
## 1612  1.0986123
## 1613  0.0000000
## 1614  1.0986123
## 1615  0.0000000
## 1616  0.0000000
## 1617  0.6931472
## 1618  0.6931472
## 1619  0.0000000
## 1620  0.6931472
## 1621  0.0000000
## 1622  0.0000000
## 1623  0.0000000
## 1624  1.6094379
## 1625  0.0000000
## 1626  0.0000000
## 1627  0.0000000
## 1628  0.0000000
## 1629  0.0000000
## 1630  0.0000000
## 1631  0.0000000
## 1632  0.0000000
## 1633  0.0000000
## 1634  0.0000000
## 1635  0.0000000
## 1636  1.3862944
## 1637  0.0000000
## 1638  0.0000000
## 1639  0.6931472
## 1640  0.0000000
## 1641  0.0000000
## 1642  0.6931472
## 1643  0.6931472
## 1644  0.0000000
## 1645  0.0000000
## 1646  0.0000000
## 1647  0.0000000
## 1648  1.0986123
## 1649  0.0000000
## 1650  0.0000000
## 1651  0.6931472
## 1652  0.0000000
## 1653  0.6931472
## 1654  0.0000000
## 1655  0.0000000
## 1656  1.6094379
## 1657  0.0000000
## 1658  0.6931472
## 1659  0.0000000
## 1660  1.0986123
## 1661  0.0000000
## 1662  1.7917595
## 1663  0.0000000
## 1664  0.6931472
## 1665  0.0000000
## 1666  1.6094379
## 1667  0.0000000
## 1668  0.0000000
## 1669  0.0000000
## 1670  0.0000000
## 1671  0.0000000
## 1672  0.0000000
## 1673  0.0000000
## 1674  0.0000000
## 1675  0.0000000
## 1676  0.6931472
## 1677  0.0000000
## 1678  0.0000000
## 1679  0.0000000
## 1680  0.0000000
## 1681  0.0000000
## 1682  0.6931472
## 1683  0.0000000
## 1684  0.6931472
## 1685  0.6931472
## 1686  0.6931472
## 1687  0.0000000
## 1688  0.0000000
## 1689  0.0000000
## 1690  1.0986123
## 1691  0.0000000
## 1692  0.0000000
## 1693  0.6931472
## 1694  0.0000000
## 1695  0.6931472
## 1696  0.0000000
## 1697  0.6931472
## 1698  0.0000000
## 1699  0.0000000
## 1700  0.0000000
## 1701  3.9512437
## 1702  0.6931472
## 1703  0.0000000
## 1704  0.0000000
## 1705  1.6094379
## 1706  0.0000000
## 1707  0.0000000
## 1708  1.7917595
## 1709  0.6931472
## 1710  0.0000000
## 1711  0.0000000
## 1712  0.0000000
## 1713  0.0000000
## 1714  0.0000000
## 1715  0.0000000
## 1716  0.0000000
## 1717  0.0000000
## 1718  0.0000000
## 1719  0.0000000
## 1720  1.0986123
## 1721  1.0986123
## 1722  0.6931472
## 1723  0.0000000
## 1724  0.0000000
## 1725  0.0000000
## 1726  0.0000000
## 1727  2.0794415
## 1728  0.0000000
## 1729  0.0000000
## 1730  0.0000000
## 1731  0.0000000
## 1732  0.0000000
## 1733  0.0000000
## 1734  0.0000000
## 1735  0.0000000
## 1736  0.0000000
## 1737  0.6931472
## 1738  0.0000000
## 1739  0.0000000
## 1740  0.0000000
## 1741  1.6094379
## 1742  0.0000000
## 1743  0.0000000
## 1744  0.0000000
## 1745  0.0000000
## 1746  0.0000000
## 1747  0.0000000
## 1748  0.6931472
## 1749  0.0000000
## 1750  0.0000000
## 1751  0.0000000
## 1752  1.0986123
## 1753  0.0000000
## 1754  0.0000000
## 1755  1.3862944
## 1756  0.0000000
## 1757  1.3862944
## 1758  1.3862944
## 1759  0.0000000
## 1760  1.3862944
## 1761  0.0000000
## 1762  1.3862944
## 1763  0.0000000
## 1764  0.0000000
## 1765  1.0986123
## 1766  0.0000000
## 1767  0.0000000
## 1768  0.0000000
## 1769  0.0000000
## 1770  0.0000000
## 1771  0.0000000
## 1772  0.6931472
## 1773  0.6931472
## 1774  0.0000000
## 1775  0.0000000
## 1776  0.0000000
## 1777  0.0000000
## 1778  0.0000000
## 1779  0.6931472
## 1780  0.0000000
## 1781  0.0000000
## 1782  0.0000000
## 1783  0.0000000
## 1784  0.6931472
## 1785  0.0000000
## 1786  0.6931472
## 1787  0.0000000
## 1788  0.6931472
## 1789  1.0986123
## 1790  0.0000000
## 1791  0.0000000
## 1792  0.0000000
## 1793  0.0000000
## 1794  0.6931472
## 1795  0.0000000
## 1796  0.0000000
## 1797  0.0000000
## 1798  1.0986123
## 1799  1.0986123
## 1800  0.0000000
## 1801  0.0000000
## 1802  0.0000000
## 1803  0.0000000
## 1804  0.0000000
## 1805  0.0000000
## 1806  1.0986123
## 1807  0.6931472
## 1808  0.0000000
## 1809  0.0000000
## 1810  0.0000000
## 1811  0.0000000
## 1812  0.0000000
## 1813  0.0000000
## 1814  0.0000000
## 1815  0.0000000
## 1816  0.0000000
## 1817  0.0000000
## 1818  0.6931472
## 1819  0.0000000
## 1820  0.0000000
## 1821  0.0000000
## 1822  0.0000000
## 1823  0.0000000
## 1824  2.0794415
## 1825  0.0000000
## 1826  1.3862944
## 1827  0.6931472
## 1828  0.0000000
## 1829  0.0000000
## 1830  0.0000000
## 1831  0.0000000
## 1832  0.0000000
## 1833  0.0000000
## 1834  0.0000000
## 1835  1.7917595
## 1836  0.0000000
## 1837  0.0000000
## 1838  0.0000000
## 1839  0.0000000
## 1840  0.0000000
## 1841  0.0000000
## 1842  0.0000000
## 1843  0.0000000
## 1844  0.0000000
## 1845  1.3862944
## 1846  1.0986123
## 1847  1.3862944
## 1848  0.0000000
## 1849  0.0000000
## 1850  0.0000000
## 1851  0.0000000
## 1852  0.0000000
## 1853  0.0000000
## 1854  0.6931472
## 1855  0.0000000
## 1856  0.6931472
## 1857  1.3862944
## 1858  0.0000000
## 1859  0.6931472
## 1860  0.0000000
## 1861  0.0000000
## 1862  0.0000000
## 1863  0.6931472
## 1864  0.0000000
## 1865  0.0000000
## 1866  0.6931472
## 1867  0.0000000
## 1868  0.6931472
## 1869  0.0000000
## 1870  0.0000000
## 1871  1.0986123
## 1872  0.0000000
## 1873  0.0000000
## 1874  0.0000000
## 1875  0.6931472
## 1876  1.6094379
## 1877  0.0000000
## 1878  1.0986123
## 1879  0.0000000
## 1880  0.0000000
## 1881  0.6931472
## 1882  0.0000000
## 1883  0.6931472
## 1884  0.0000000
## 1885  0.0000000
## 1886  0.0000000
## 1887  0.6931472
## 1888  0.0000000
## 1889  0.6931472
## 1890  1.0986123
## 1891  1.0986123
## 1892  0.0000000
## 1893  1.0986123
## 1894  0.0000000
## 1895  0.0000000
## 1896  0.0000000
## 1897  0.0000000
## 1898  0.0000000
## 1899  0.0000000
## 1900  0.0000000
## 1901  0.0000000
## 1902  0.0000000
## 1903  0.0000000
## 1904  0.0000000
## 1905  1.0986123
## 1906  0.0000000
## 1907  0.6931472
## 1908  0.0000000
## 1909  0.0000000
## 1910  0.6931472
## 1911  0.0000000
## 1912  0.0000000
## 1913  0.0000000
## 1914  1.0986123
## 1915  0.0000000
## 1916  0.0000000
## 1917  0.6931472
## 1918  0.6931472
## 1919  0.0000000
## 1920  0.0000000
## 1921  0.0000000
## 1922  0.0000000
## 1923  1.3862944
## 1924  1.0986123
## 1925  0.0000000
## 1926  1.0986123
## 1927  0.0000000
## 1928  0.0000000
## 1929  0.0000000
## 1930  0.0000000
## 1931  0.0000000
## 1932  0.0000000
## 1933  0.0000000
## 1934  1.0986123
## 1935  0.0000000
## 1936  0.0000000
## 1937  0.0000000
## 1938  0.0000000
## 1939  1.0986123
## 1940  1.0986123
## 1941  0.0000000
## 1942  0.0000000
## 1943  1.0986123
## 1944  0.0000000
## 1945  0.0000000
## 1946  1.0986123
## 1947  0.0000000
## 1948  0.0000000
## 1949  0.6931472
## 1950  0.0000000
## 1951  0.0000000
## 1952  0.0000000
## 1953  0.6931472
## 1954  0.0000000
## 1955  0.0000000
## 1956  0.0000000
## 1957  1.3862944
## 1958  0.0000000
## 1959  0.0000000
## 1960  0.0000000
## 1961  0.0000000
## 1962  0.0000000
## 1963  0.0000000
## 1964  0.0000000
## 1965  0.0000000
## 1966  0.0000000
## 1967  0.6931472
## 1968  0.0000000
## 1969  1.0986123
## 1970  1.0986123
## 1971  0.0000000
## 1972  0.0000000
## 1973  0.0000000
## 1974  0.0000000
## 1975  0.0000000
## 1976  0.6931472
## 1977  1.7917595
## 1978  0.6931472
## 1979  0.0000000
## 1980  0.0000000
## 1981  0.0000000
## 1982  0.0000000
## 1983  0.6931472
## 1984  0.0000000
## 1985  0.0000000
## 1986  0.0000000
## 1987  0.0000000
## 1988  0.6931472
## 1989  1.0986123
## 1990  0.0000000
## 1991  0.6931472
## 1992  0.0000000
## 1993  0.0000000
## 1994  0.0000000
## 1995  0.0000000
## 1996  0.0000000
## 1997  0.6931472
## 1998  0.0000000
## 1999  0.6931472
## 2000  0.0000000
## 2001  0.0000000
## 2002  0.0000000
## 2003  0.6931472
## 2004  0.0000000
## 2005  0.0000000
## 2006  0.0000000
## 2007  0.6931472
## 2008  1.3862944
## 2009  0.6931472
## 2010  0.0000000
## 2011  1.0986123
## 2012  0.0000000
## 2013  0.0000000
## 2014  0.0000000
## 2015  0.6931472
## 2016  0.0000000
## 2017  1.0986123
## 2018  0.0000000
## 2019  0.6931472
## 2020  0.0000000
## 2021  0.0000000
## 2022  0.0000000
## 2023  0.0000000
## 2024  0.0000000
## 2025  1.3862944
## 2026  0.0000000
## 2027  0.6931472
## 2028  0.0000000
## 2029  1.0986123
## 2030  0.6931472
## 2031  0.0000000
## 2032  0.0000000
## 2033  0.0000000
## 2034  0.0000000
## 2035  0.0000000
## 2036  0.0000000
## 2037  0.6931472
## 2038  0.0000000
## 2039  0.0000000
## 2040  0.0000000
## 2041  0.0000000
## 2042  1.3862944
## 2043  0.6931472
## 2044  0.6931472
## 2045  0.6931472
## 2046  0.0000000
## 2047  0.0000000
## 2048  0.0000000
## 2049  0.0000000
## 2050  0.6931472
## 2051  1.3862944
## 2052  0.0000000
## 2053  0.0000000
## 2054  0.0000000
## 2055  0.0000000
## 2056  2.0794415
## 2057  2.0794415
## 2058  2.0794415
## 2059  0.0000000
## 2060  0.6931472
## 2061  2.0794415
## 2062  0.0000000
## 2063  0.0000000
## 2064  0.0000000
## 2065  0.0000000
## 2066  0.0000000
## 2067  1.0986123
## 2068  0.6931472
## 2069  0.0000000
## 2070  0.6931472
## 2071  1.0986123
## 2072  0.0000000
## 2073  0.0000000
## 2074  0.0000000
## 2075  0.0000000
## 2076  0.0000000
## 2077  0.0000000
## 2078  0.6931472
## 2079  1.0986123
## 2080  0.0000000
## 2081  0.0000000
## 2082  0.0000000
## 2083  1.3862944
## 2084  0.0000000
## 2085  0.0000000
## 2086  0.0000000
## 2087  0.0000000
## 2088  0.0000000
## 2089  0.6931472
## 2090  0.0000000
## 2091  0.6931472
## 2092  0.0000000
## 2093  1.3862944
## 2094  0.6931472
## 2095  0.0000000
## 2096  0.0000000
## 2097  0.0000000
## 2098  0.0000000
## 2099  0.0000000
## 2100  0.6931472
## 2101  0.0000000
## 2102  0.0000000
## 2103  0.0000000
## 2104  0.0000000
## 2105  1.6094379
## 2106  1.3862944
## 2107  1.0986123
## 2108  0.0000000
## 2109  0.0000000
## 2110  0.6931472
## 2111  0.6931472
## 2112  0.0000000
## 2113  0.0000000
## 2114  0.0000000
## 2115  0.0000000
## 2116  1.0986123
## 2117  1.0986123
## 2118  0.6931472
## 2119  0.6931472
## 2120  0.6931472
## 2121  1.0986123
## 2122  0.0000000
## 2123  0.0000000
## 2124  0.0000000
## 2125  0.6931472
## 2126  1.0986123
## 2127  0.6931472
## 2128  0.0000000
## 2129  0.6931472
## 2130  0.0000000
## 2131  0.0000000
## 2132  1.0986123
## 2133  0.6931472
## 2134  0.6931472
## 2135  0.0000000
## 2136  1.0986123
## 2137  0.6931472
## 2138  0.0000000
## 2139  0.0000000
## 2140  0.6931472
## 2141  1.0986123
## 2142  0.0000000
## 2143  0.0000000
## 2144  0.6931472
## 2145  0.6931472
## 2146  0.0000000
## 2147  0.0000000
## 2148  0.6931472
## 2149  0.0000000
## 2150  0.6931472
## 2151  0.6931472
## 2152  0.0000000
## 2153  0.0000000
## 2154  0.0000000
## 2155  0.0000000
## 2156  0.0000000
## 2157  0.0000000
## 2158  0.0000000
## 2159  0.6931472
## 2160  0.6931472
## 2161  0.6931472
## 2162  0.6931472
## 2163  0.6931472
## 2164  0.0000000
## 2165  0.0000000
## 2166  0.0000000
## 2167  0.0000000
## 2168  0.6931472
## 2169  0.6931472
## 2170  0.0000000
## 2171  0.0000000
## 2172  0.0000000
## 2173  0.6931472
## 2174  1.7917595
## 2175  1.3862944
## 2176  1.3862944
## 2177  0.6931472
## 2178  0.0000000
## 2179  0.0000000
## 2180  0.0000000
## 2181  1.3862944
## 2182  0.0000000
## 2183  0.0000000
## 2184  0.0000000
## 2185  0.0000000
## 2186  0.0000000
## 2187  0.6931472
## 2188  0.0000000
## 2189  0.6931472
## 2190  0.0000000
## 2191  0.0000000
## 2192  0.0000000
## 2193  1.3862944
## 2194  0.6931472
## 2195  0.0000000
## 2196  0.0000000
## 2197  0.0000000
## 2198  0.0000000
## 2199  1.0986123
## 2200  0.0000000
## 2201  0.0000000
## 2202  1.0986123
## 2203  1.0986123
## 2204  0.0000000
## 2205  0.0000000
## 2206  0.0000000
## 2207  0.0000000
## 2208  0.6931472
## 2209  1.0986123
## 2210  0.6931472
## 2211  1.3862944
## 2212  1.7917595
## 2213  0.0000000
## 2214  1.0986123
## 2215  0.0000000
## 2216  0.0000000
## 2217  0.0000000
## 2218  0.0000000
## 2219  0.0000000
## 2220  0.0000000
## 2221  0.6931472
## 2222  0.0000000
## 2223  0.0000000
## 2224  0.0000000
## 2225  0.0000000
## 2226  0.0000000
## 2227  1.3862944
## 2228  0.0000000
## 2229  0.0000000
## 2230  2.0794415
## 2231  0.0000000
## 2232  0.0000000
## 2233  0.0000000
## 2234  0.0000000
## 2235  0.0000000
## 2236  0.0000000
## 2237  0.0000000
## 2238  0.0000000
## 2239  0.0000000
## 2240  0.0000000
## 2241  0.0000000
## 2242  0.0000000
## 2243  0.0000000
## 2244  0.0000000
## 2245  3.9512437
## 2246  0.6931472
## 2247  0.0000000
## 2248  2.3978953
## 2249  0.6931472
## 2250  0.0000000
## 2251  1.6094379
## 2252  0.0000000
## 2253  0.0000000
## 2254  0.0000000
## 2255  0.0000000
## 2256  0.0000000
## 2257  0.0000000
## 2258  0.0000000
## 2259  0.6931472
## 2260  0.0000000
## 2261  0.0000000
## 2262  0.0000000
## 2263  0.0000000
## 2264  0.0000000
## 2265  0.0000000
## 2266  0.0000000
## 2267  0.0000000
## 2268  1.0986123
## 2269  0.0000000
## 2270  0.6931472
## 2271  0.0000000
## 2272  0.0000000
## 2273  0.6931472
## 2274  0.0000000
## 2275  0.0000000
## 2276  0.0000000
## 2277  0.0000000
## 2278  0.0000000
## 2279  0.0000000
## 2280  0.0000000
## 2281  0.0000000
## 2282  0.0000000
## 2283  0.0000000
## 2284  0.0000000
## 2285  0.0000000
## 2286  1.6094379
## 2287  0.0000000
## 2288  0.0000000
## 2289  0.0000000
## 2290  0.0000000
## 2291  0.0000000
## 2292  0.0000000
## 2293  0.0000000
## 2294  0.0000000
## 2295  0.0000000
## 2296  0.0000000
## 2297  1.3862944
## 2298  0.6931472
## 2299  0.0000000
## 2300  0.0000000
## 2301  0.0000000
## 2302  0.0000000
## 2303  0.0000000
## 2304  0.0000000
## 2305  0.0000000
## 2306  0.0000000
## 2307  0.0000000
## 2308  0.0000000
## 2309  0.0000000
## 2310  0.0000000
## 2311  0.0000000
## 2312  0.0000000
## 2313  0.0000000
## 2314  0.0000000
## 2315  0.6931472
## 2316  0.6931472
## 2317  0.0000000
## 2318  0.0000000
## 2319  0.0000000
## 2320  0.0000000
## 2321  0.6931472
## 2322  0.0000000
## 2323  0.0000000
## 2324  0.6931472
## 2325  0.6931472
## 2326  0.0000000
## 2327  1.0986123
## 2328  0.6931472
## 2329  1.6094379
## 2330  0.0000000
## 2331  0.6931472
## 2332  0.0000000
## 2333  1.3862944
## 2334  0.0000000
## 2335  0.6931472
## 2336  0.0000000
## 2337  0.0000000
## 2338  0.0000000
## 2339  0.6931472
## 2340  0.0000000
## 2341  0.0000000
## 2342  0.0000000
## 2343  0.0000000
## 2344  0.6931472
## 2345  0.0000000
## 2346  0.0000000
## 2347  0.6931472
## 2348  0.0000000
## 2349  0.6931472
## 2350  0.6931472
## 2351  0.0000000
## 2352  1.0986123
## 2353  0.0000000
## 2354  0.0000000
## 2355  0.0000000
## 2356  0.0000000
## 2357  0.0000000
## 2358  0.0000000
## 2359  0.0000000
## 2360  0.0000000
## 2361  0.0000000
## 2362  0.0000000
## 2363  0.0000000
## 2364  0.0000000
## 2365  2.7080502
## 2366  0.0000000
## 2367  0.0000000
## 2368  0.0000000
## 2369  0.0000000
## 2370  2.7080502
## 2371  0.0000000
## 2372  0.6931472
## 2373  0.0000000
## 2374  0.0000000
## 2375  0.0000000
## 2376  2.7080502
## 2377  0.0000000
## 2378  0.0000000
## 2379  1.0986123
## 2380  0.0000000
## 2381  0.0000000
## 2382  0.0000000
## 2383  0.0000000
## 2384  0.0000000
## 2385  0.6931472
## 2386  0.0000000
## 2387  0.0000000
## 2388  0.0000000
## 2389  1.0986123
## 2390  0.6931472
## 2391  0.0000000
## 2392  0.0000000
## 2393  2.7080502
## 2394  0.0000000
## 2395  0.6931472
## 2396  0.0000000
## 2397  0.0000000
## 2398  0.0000000
## 2399  0.0000000
## 2400  0.0000000
## 2401  0.6931472
## 2402  0.0000000
## 2403  0.0000000
## 2404  0.0000000
## 2405  0.0000000
## 2406  0.0000000
## 2407  0.0000000
## 2408  0.6931472
## 2409  0.0000000
## 2410  0.0000000
## 2411  0.0000000
## 2412  0.0000000
## 2413  0.0000000
## 2414  0.0000000
## 2415  0.6931472
## 2416  0.0000000
## 2417  2.0794415
## 2418  0.6931472
## 2419  1.3862944
## 2420  0.0000000
## 2421  0.0000000
## 2422  0.0000000
## 2423  2.7080502
## 2424  0.0000000
## 2425  1.6094379
## 2426  0.0000000
## 2427  0.0000000
## 2428  0.0000000
## 2429  1.3862944
## 2430  0.0000000
## 2431  0.0000000
## 2432  0.6931472
## 2433  0.6931472
## 2434  1.3862944
## 2435  0.6931472
## 2436  0.0000000
## 2437  0.0000000
## 2438  1.0986123
## 2439  0.0000000
## 2440  0.6931472
## 2441  0.0000000
## 2442  1.0986123
## 2443  0.0000000
## 2444  0.0000000
## 2445  0.0000000
## 2446  0.0000000
## 2447  0.0000000
## 2448  0.0000000
## 2449  0.0000000
## 2450  0.0000000
## 2451  0.0000000
## 2452  2.7080502
## 2453  2.9444390
## 2454  2.9444390
## 2455  0.0000000
## 2456  0.0000000
## 2457  3.9512437
## 2458  0.0000000
## 2459  0.0000000
## 2460  0.0000000
## 2461  0.6931472
## 2462  0.0000000
## 2463  0.0000000
## 2464  1.0986123
## 2465  0.0000000
## 2466  0.0000000
## 2467  1.0986123
## 2468  0.0000000
## 2469  0.0000000
## 2470  0.0000000
## 2471  0.0000000
## 2472  0.0000000
## 2473  0.0000000
## 2474  0.0000000
## 2475  0.0000000
## 2476  0.0000000
## 2477  0.0000000
## 2478  1.3862944
## 2479  0.0000000
## 2480  0.0000000
## 2481  1.6094379
## 2482  0.6931472
## 2483  0.0000000
## 2484  0.6931472
## 2485  1.3862944
## 2486  0.0000000
## 2487  0.6931472
## 2488  0.0000000
## 2489  0.0000000
## 2490  0.0000000
## 2491  0.0000000
## 2492  0.6931472
## 2493  1.0986123
## 2494  0.0000000
## 2495  0.0000000
## 2496  0.6931472
## 2497  0.0000000
## 2498  0.0000000
## 2499  0.0000000
## 2500  0.6931472
## 2501  0.0000000
## 2502  0.0000000
## 2503  0.6931472
## 2504  3.9512437
## 2505  0.0000000
## 2506  1.0986123
## 2507  0.0000000
## 2508  0.6931472
## 2509  3.9512437
## 2510  0.0000000
## 2511  0.0000000
## 2512  0.0000000
## 2513  0.0000000
## 2514  0.6931472
## 2515  1.6094379
## 2516  0.6931472
## 2517  0.0000000
## 2518  0.0000000
## 2519  0.6931472
## 2520  0.0000000
## 2521  0.0000000
## 2522  0.0000000
## 2523  1.6094379
## 2524  1.6094379
## 2525  0.0000000
## 2526  0.0000000
## 2527  0.0000000
## 2528  0.0000000
## 2529  0.6931472
## 2530  0.6931472
## 2531  1.6094379
## 2532  0.0000000
## 2533  0.6931472
## 2534  0.0000000
## 2535  0.0000000
## 2536  0.0000000
## 2537  0.0000000
## 2538  0.0000000
## 2539  0.0000000
## 2540  0.0000000
## 2541  0.0000000
## 2542  0.0000000
## 2543  0.0000000
## 2544  0.0000000
## 2545  0.0000000
## 2546  0.0000000
## 2547  0.6931472
## 2548  0.0000000
## 2549  0.0000000
## 2550  1.0986123
## 2551  2.0794415
## 2552  0.0000000
## 2553  0.0000000
## 2554  0.0000000
## 2555  0.0000000
## 2556  0.0000000
## 2557  0.6931472
## 2558  0.0000000
## 2559  0.0000000
## 2560  0.6931472
## 2561  0.0000000
## 2562  0.0000000
## 2563  0.0000000
## 2564  0.0000000
## 2565  0.0000000
## 2566  0.0000000
## 2567  0.0000000
## 2568  0.0000000
## 2569  0.0000000
## 2570  0.0000000
## 2571  0.0000000
## 2572  3.9512437
## 2573  2.3025851
## 2574  1.0986123
## 2575  0.6931472
## 2576  0.0000000
## 2577  0.0000000
## 2578  1.0986123
## 2579  1.6094379
## 2580  1.6094379
## 2581  0.6931472
## 2582  0.0000000
## 2583  0.0000000
## 2584  0.0000000
## 2585  1.3862944
## 2586  0.6931472
## 2587  0.0000000
## 2588  0.6931472
## 2589  0.0000000
## 2590  0.6931472
## 2591  1.6094379
## 2592  0.0000000
## 2593  1.6094379
## 2594  0.0000000
## 2595  0.0000000
## 2596  0.0000000
## 2597  0.0000000
## 2598  2.0794415
## 2599  0.0000000
## 2600  0.6931472
## 2601  0.0000000
## 2602  0.0000000
## 2603  2.9444390
## 2604  0.0000000
## 2605  2.9444390
## 2606  0.0000000
## 2607  0.0000000
## 2608  0.0000000
## 2609  0.0000000
## 2610  0.0000000
## 2611  0.6931472
## 2612  0.0000000
## 2613  3.9512437
## 2614  0.0000000
## 2615  0.0000000
## 2616  0.6931472
## 2617  0.0000000
## 2618  1.0986123
## 2619  2.7080502
## 2620  0.0000000
## 2621  0.0000000
## 2622  0.6931472
## 2623  0.0000000
## 2624  0.0000000
## 2625  0.6931472
## 2626  0.0000000
## 2627  0.0000000
## 2628  0.6931472
## 2629  1.0986123
## 2630  0.0000000
## 2631  1.3862944
## 2632  0.0000000
## 2633  0.0000000
## 2634  0.0000000
## 2635  0.0000000
## 2636  0.6931472
## 2637  0.0000000
## 2638  0.0000000
## 2639  1.0986123
## 2640  0.6931472
## 2641  1.0986123
## 2642  1.0986123
## 2643  0.0000000
## 2644  0.0000000
## 2645  0.0000000
## 2646  3.9512437
## 2647  0.0000000
## 2648  0.0000000
## 2649  0.0000000
## 2650  0.0000000
## 2651  1.3862944
## 2652  0.0000000
## 2653  0.6931472
## 2654  0.0000000
## 2655  0.0000000
## 2656  0.0000000
## 2657  1.6094379
## 2658  0.0000000
## 2659  1.0986123
## 2660  0.6931472
## 2661  2.7080502
## 2662  0.0000000
## 2663  0.0000000
## 2664  0.6931472
## 2665  1.3862944
## 2666  0.0000000
## 2667  0.0000000
## 2668  0.0000000
## 2669  0.0000000
## 2670  0.0000000
## 2671  2.0794415
## 2672  0.0000000
## 2673  0.0000000
## 2674  0.0000000
## 2675  0.0000000
## 2676  0.6931472
## 2677  0.0000000
## 2678  0.0000000
## 2679  0.0000000
## 2680  0.0000000
## 2681  0.0000000
## 2682  0.0000000
## 2683  0.0000000
## 2684  0.0000000
## 2685  0.0000000
## 2686  0.0000000
## 2687  0.0000000
## 2688  0.0000000
## 2689  0.0000000
## 2690  1.0986123
## 2691  0.6931472
## 2692  0.6931472
## 2693  1.0986123
## 2694  0.6931472
## 2695  0.0000000
## 2696  0.0000000
## 2697  0.6931472
## 2698  0.6931472
## 2699  0.0000000
## 2700  0.0000000
## 2701  0.0000000
## 2702  1.0986123
## 2703  0.0000000
## 2704  0.0000000
## 2705  0.0000000
## 2706  1.6094379
## 2707  0.0000000
## 2708  0.0000000
## 2709  0.0000000
## 2710  0.0000000
## 2711  0.0000000
## 2712  0.0000000
## 2713  3.9512437
## 2714  0.6931472
## 2715  0.0000000
## 2716  0.6931472
## 2717  0.0000000
## 2718  0.0000000
## 2719  0.0000000
## 2720  0.6931472
## 2721  0.0000000
## 2722  0.0000000
## 2723  0.6931472
## 2724  0.0000000
## 2725  0.0000000
## 2726  1.0986123
## 2727  0.6931472
## 2728  0.0000000
## 2729  0.0000000
## 2730  0.0000000
## 2731  0.0000000
## 2732  0.0000000
## 2733  0.0000000
## 2734  0.0000000
## 2735  0.0000000
## 2736  1.0986123
## 2737  0.0000000
## 2738  0.0000000
## 2739  0.6931472
## 2740  0.0000000
## 2741  0.0000000
## 2742  0.6931472
## 2743  0.0000000
## 2744  0.0000000
## 2745  0.0000000
## 2746  0.0000000
## 2747  0.0000000
## 2748  1.0986123
## 2749  0.6931472
## 2750  0.0000000
## 2751  1.0986123
## 2752  1.0986123
## 2753  1.9459101
## 2754  1.0986123
## 2755  3.6635616
## 2756  1.3862944
## 2757  3.9512437
## 2758  0.6931472
## 2759  0.0000000
## 2760  0.6931472
## 2761  0.0000000
## 2762  0.0000000
## 2763  0.0000000
## 2764  0.0000000
## 2765  0.0000000
## 2766  0.0000000
## 2767  0.6931472
## 2768  0.0000000
## 2769  2.0794415
## 2770  0.0000000
## 2771  3.6635616
## 2772  3.6635616
## 2773  3.6635616
## 2774  0.0000000
## 2775  0.0000000
## 2776  0.0000000
## 2777  0.0000000
## 2778  1.0986123
## 2779  0.0000000
## 2780  0.6931472
## 2781  0.0000000
## 2782  2.3025851
## 2783  0.6931472
## 2784  0.6931472
## 2785  0.6931472
## 2786  0.0000000
## 2787  2.0794415
## 2788  0.0000000
## 2789  2.0794415
## 2790  1.0986123
## 2791  0.6931472
## 2792  0.0000000
## 2793  0.0000000
## 2794  0.0000000
## 2795  2.0794415
## 2796  0.0000000
## 2797  0.0000000
## 2798  0.0000000
## 2799  0.0000000
## 2800  0.0000000
## 2801  1.3862944
## 2802  0.6931472
## 2803  0.0000000
## 2804  0.0000000
## 2805  0.0000000
## 2806  0.0000000
## 2807  0.0000000
## 2808  0.6931472
## 2809  0.6931472
## 2810  0.0000000
## 2811  0.6931472
## 2812  0.0000000
## 2813  0.0000000
## 2814  0.6931472
## 2815  0.0000000
## 2816  0.0000000
## 2817  0.0000000
## 2818  0.6931472
## 2819  0.6931472
## 2820  0.0000000
## 2821  0.0000000
## 2822  2.3025851
## 2823  2.3025851
## 2824  0.0000000
## 2825  0.0000000
## 2826  0.6931472
## 2827  0.0000000
## 2828  0.0000000
## 2829  0.6931472
## 2830  0.6931472
## 2831  0.0000000
## 2832  0.6931472
## 2833  0.0000000
## 2834  0.0000000
## 2835  0.0000000
## 2836  0.6931472
## 2837  0.0000000
## 2838  0.0000000
## 2839  0.0000000
## 2840  0.0000000
## 2841  0.0000000
## 2842  0.0000000
## 2843  0.0000000
## 2844  0.0000000
## 2845  0.6931472
## 2846  0.0000000
## 2847  1.0986123
## 2848  0.0000000
## 2849  0.0000000
## 2850  3.9512437
## 2851  0.0000000
## 2852  0.0000000
## 2853  0.0000000
## 2854  0.0000000
## 2855  1.6094379
## 2856  1.0986123
## 2857  0.0000000
## 2858  1.0986123
## 2859  0.0000000
## 2860  0.0000000
## 2861  0.6931472
## 2862  0.0000000
## 2863  1.0986123
## 2864  0.6931472
## 2865  0.6931472
## 2866  0.0000000
## 2867  0.0000000
## 2868  0.6931472
## 2869  0.0000000
## 2870  0.6931472
## 2871  0.0000000
## 2872  0.6931472
## 2873  0.6931472
## 2874  1.0986123
## 2875  0.0000000
## 2876  0.6931472
## 2877  0.0000000
## 2878  1.6094379
## 2879  0.6931472
## 2880  0.0000000
## 2881  0.0000000
## 2882  0.6931472
## 2883  0.0000000
## 2884  0.0000000
## 2885  0.0000000
## 2886  1.0986123
## 2887  0.0000000
## 2888  0.0000000
## 2889  0.0000000
## 2890  1.0986123
## 2891  0.0000000
## 2892  0.0000000
## 2893  0.0000000
## 2894  0.0000000
## 2895  0.0000000
## 2896  0.0000000
## 2897  0.0000000
## 2898  0.0000000
## 2899  0.0000000
## 2900  2.5649494
## 2901  0.6931472
## 2902  0.0000000
## 2903  0.6931472
## 2904  0.0000000
## 2905  0.0000000
## 2906  0.0000000
## 2907  2.7080502
## 2908  0.0000000
## 2909  0.0000000
## 2910  0.0000000
## 2911  0.0000000
## 2912  0.0000000
## 2913  1.6094379
## 2914  1.6094379
## 2915  1.0986123
## 2916  0.0000000
## 2917  0.0000000
## 2918  0.0000000
## 2919  1.0986123
## 2920  0.0000000
## 2921  0.6931472
## 2922  0.0000000
## 2923  0.6931472
## 2924  0.0000000
## 2925  0.0000000
## 2926  0.6931472
## 2927  1.6094379
## 2928  0.6931472
## 2929  0.0000000
## 2930  0.0000000
## 2931  0.0000000
## 2932  1.0986123
## 2933  1.3862944
## 2934  0.0000000
## 2935  0.6931472
## 2936  0.0000000
## 2937  0.0000000
## 2938  0.0000000
## 2939  0.6931472
## 2940  0.0000000
## 2941  0.0000000
## 2942  0.6931472
## 2943  2.9444390
## 2944  0.0000000
## 2945  0.0000000
## 2946  1.0986123
## 2947  0.0000000
## 2948  0.0000000
## 2949  0.6931472
## 2950  0.0000000
## 2951  0.6931472
## 2952  0.0000000
## 2953  0.6931472
## 2954  0.0000000
## 2955  0.0000000
## 2956  0.0000000
## 2957  0.0000000
## 2958  0.0000000
## 2959  0.0000000
## 2960  0.0000000
## 2961  0.6931472
## 2962  0.0000000
## 2963  0.6931472
## 2964  0.0000000
## 2965  0.0000000
## 2966  0.0000000
## 2967  0.0000000
## 2968  0.0000000
## 2969  0.0000000
## 2970  0.0000000
## 2971  0.0000000
## 2972  0.0000000
## 2973  0.0000000
## 2974  0.0000000
## 2975  0.0000000
## 2976  0.6931472
## 2977  0.0000000
## 2978  0.0000000
## 2979  0.0000000
## 2980  0.0000000
## 2981  0.6931472
## 2982  1.0986123
## 2983  0.0000000
## 2984  0.0000000
## 2985  0.0000000
## 2986  0.0000000
## 2987  0.0000000
## 2988  0.0000000
## 2989  0.0000000
## 2990  3.9512437
## 2991  0.0000000
## 2992  0.0000000
## 2993  0.0000000
## 2994  0.6931472
## 2995  0.0000000
## 2996  1.6094379
## 2997  0.0000000
## 2998  0.0000000
## 2999  1.6094379
## 3000  0.0000000
## 3001  1.0986123
## 3002  0.0000000
## 3003  0.0000000
## 3004  0.0000000
## 3005  0.0000000
## 3006  0.0000000
## 3007  0.0000000
## 3008  0.6931472
## 3009  0.0000000
## 3010  0.0000000
## 3011  3.9512437
## 3012  0.0000000
## 3013  0.0000000
## 3014  1.0986123
## 3015  0.0000000
## 3016  0.0000000
## 3017  0.0000000
## 3018  1.3862944
## 3019  0.0000000
## 3020  0.6931472
## 3021  0.6931472
## 3022  0.0000000
## 3023  1.0986123
## 3024  0.6931472
## 3025  1.6094379
## 3026  0.0000000
## 3027  0.0000000
## 3028  0.0000000
## 3029  1.0986123
## 3030  0.0000000
## 3031  0.0000000
## 3032  0.0000000
## 3033  0.6931472
## 3034  0.0000000
## 3035  0.0000000
## 3036  0.0000000
## 3037  1.0986123
## 3038  0.0000000
## 3039  0.6931472
## 3040  1.0986123
## 3041  0.0000000
## 3042  0.6931472
## 3043  0.0000000
## 3044  1.0986123
## 3045  0.0000000
## 3046  1.0986123
## 3047  0.0000000
## 3048  0.0000000
## 3049  0.0000000
## 3050  0.0000000
## 3051  0.0000000
## 3052  0.0000000
## 3053  0.0000000
## 3054  0.6931472
## 3055  0.0000000
## 3056  0.6931472
## 3057  0.6931472
## 3058  0.0000000
## 3059  0.6931472
## 3060  0.0000000
## 3061  0.0000000
## 3062  0.0000000
## 3063  0.0000000
## 3064  0.0000000
## 3065  0.0000000
## 3066  0.0000000
## 3067  0.0000000
## 3068  0.0000000
## 3069  0.6931472
## 3070  0.0000000
## 3071  0.0000000
## 3072  1.0986123
## 3073  0.0000000
## 3074  0.0000000
## 3075  1.0986123
## 3076  0.0000000
## 3077  0.0000000
## 3078  0.0000000
## 3079  0.0000000
## 3080  0.0000000
## 3081  2.0794415
## 3082  0.0000000
## 3083  1.0986123
## 3084  0.0000000
## 3085  0.0000000
## 3086  0.0000000
## 3087  0.0000000
## 3088  0.0000000
## 3089  0.0000000
## 3090  0.0000000
## 3091  0.0000000
## 3092  0.6931472
## 3093  0.0000000
## 3094  0.0000000
## 3095  0.0000000
## 3096  0.0000000
## 3097  0.0000000
## 3098  0.0000000
## 3099  0.0000000
## 3100  0.0000000
## 3101  0.0000000
## 3102  0.0000000
## 3103  0.0000000
## 3104  0.0000000
## 3105  0.0000000
## 3106  0.0000000
## 3107  0.0000000
## 3108  0.6931472
## 3109  0.0000000
## 3110  1.3862944
## 3111  0.0000000
## 3112  0.0000000
## 3113  0.0000000
## 3114  0.0000000
## 3115  0.0000000
## 3116  0.6931472
## 3117  1.7917595
## 3118  0.0000000
## 3119  0.0000000
## 3120  0.0000000
## 3121  0.0000000
## 3122  0.0000000
## 3123  0.0000000
## 3124  0.0000000
## 3125  0.0000000
## 3126  0.0000000
## 3127  0.0000000
## 3128  0.0000000
## 3129  0.6931472
## 3130  3.9512437
## 3131  0.0000000
## 3132  0.0000000
## 3133  1.6094379
## 3134  0.0000000
## 3135  0.0000000
## 3136  0.0000000
## 3137  0.0000000
## 3138  0.0000000
## 3139  1.0986123
## 3140  0.6931472
## 3141  0.0000000
## 3142  0.0000000
## 3143  0.0000000
## 3144  0.0000000
## 3145  2.7080502
## 3146  1.0986123
## 3147  0.0000000
## 3148  0.0000000
## 3149  0.0000000
## 3150  0.0000000
## 3151  0.0000000
## 3152  0.0000000
## 3153  0.0000000
## 3154  0.0000000
## 3155  0.0000000
## 3156  1.0986123
## 3157  0.0000000
## 3158  0.6931472
## 3159  1.0986123
## 3160  0.6931472
## 3161  0.0000000
## 3162  0.6931472
## 3163  0.0000000
## 3164  0.0000000
## 3165  0.0000000
## 3166  0.0000000
## 3167  0.0000000
## 3168  0.0000000
## 3169  0.6931472
## 3170  0.6931472
## 3171  0.0000000
## 3172  0.0000000
## 3173  0.6931472
## 3174  0.0000000
## 3175  0.6931472
## 3176  0.0000000
## 3177  0.0000000
## 3178  0.6931472
## 3179  0.0000000
## 3180  0.0000000
## 3181  0.0000000
## 3182  0.6931472
## 3183  1.0986123
## 3184  0.0000000
## 3185  0.0000000
## 3186  0.0000000
## 3187  0.6931472
## 3188  0.0000000
## 3189  0.0000000
## 3190  0.0000000
## 3191  0.6931472
## 3192  0.0000000
## 3193  0.6931472
## 3194  0.0000000
## 3195  0.6931472
## 3196  1.6094379
## 3197  0.0000000
## 3198  0.0000000
## 3199  0.0000000
## 3200  0.0000000
## 3201  1.6094379
## 3202  0.0000000
## 3203  0.0000000
## 3204  0.6931472
## 3205  0.0000000
## 3206  0.0000000
## 3207  0.0000000
## 3208  0.0000000
## 3209  0.6931472
## 3210  0.0000000
## 3211  1.0986123
## 3212  0.0000000
## 3213  1.0986123
## 3214  0.0000000
## 3215  0.0000000
## 3216  0.0000000
## 3217  0.0000000
## 3218  0.0000000
## 3219  0.0000000
## 3220  0.6931472
## 3221  0.0000000
## 3222  0.0000000
## 3223  0.6931472
## 3224  0.6931472
## 3225  0.6931472
## 3226  0.0000000
## 3227  0.0000000
## 3228  0.0000000
## 3229  1.0986123
## 3230  0.0000000
## 3231  0.0000000
## 3232  0.0000000
## 3233  0.6931472
## 3234  0.0000000
## 3235  0.0000000
## 3236  3.2580965
## 3237  0.0000000
## 3238  2.0794415
## 3239  0.0000000
## 3240  0.6931472
## 3241  0.0000000
## 3242  0.0000000
## 3243  1.0986123
## 3244  0.0000000
## 3245  0.6931472
## 3246  0.0000000
## 3247  1.0986123
## 3248  0.0000000
## 3249  0.0000000
## 3250  0.0000000
## 3251  0.0000000
## 3252  3.9512437
## 3253  0.0000000
## 3254  0.0000000
## 3255  0.0000000
## 3256  0.0000000
## 3257  0.0000000
## 3258  0.0000000
## 3259  0.0000000
## 3260  0.0000000
## 3261  0.6931472
## 3262  0.0000000
## 3263  0.0000000
## 3264  0.0000000
## 3265  0.0000000
## 3266  0.6931472
## 3267  0.0000000
## 3268  0.0000000
## 3269  0.0000000
## 3270  0.0000000
## 3271  0.0000000
## 3272  0.0000000
## 3273  0.0000000
## 3274  0.0000000
## 3275  0.0000000
## 3276  0.0000000
## 3277  0.0000000
## 3278  0.0000000
## 3279  1.0986123
## 3280  0.0000000
## 3281  0.0000000
## 3282  0.0000000
## 3283  0.6931472
## 3284  1.3862944
## 3285  0.0000000
## 3286  0.0000000
## 3287  2.9444390
## 3288  0.0000000
## 3289  0.6931472
## 3290  0.0000000
## 3291  0.0000000
## 3292  0.0000000
## 3293  0.0000000
## 3294  0.0000000
## 3295  0.6931472
## 3296  0.0000000
## 3297  0.0000000
## 3298  0.0000000
## 3299  0.0000000
## 3300  0.0000000
## 3301  0.0000000
## 3302  0.0000000
## 3303  0.0000000
## 3304  0.0000000
## 3305  0.0000000
## 3306  0.0000000
## 3307  0.6931472
## 3308  0.6931472
## 3309  0.6931472
## 3310  3.9512437
## 3311  0.6931472
## 3312  3.9512437
## 3313  0.0000000
## 3314  0.6931472
## 3315  0.0000000
## 3316  0.0000000
## 3317  0.0000000
## 3318  0.0000000
## 3319  0.0000000
## 3320  0.0000000
## 3321  0.0000000
## 3322  0.0000000
## 3323  0.0000000
## 3324  0.0000000
## 3325  0.0000000
## 3326  0.0000000
## 3327  0.0000000
## 3328  0.6931472
## 3329  0.6931472
## 3330  0.0000000
## 3331  0.0000000
## 3332  1.6094379
## 3333  3.9512437
## 3334  3.9512437
## 3335  0.0000000
## 3336  0.6931472
## 3337  0.0000000
## 3338  0.0000000
## 3339  0.0000000
## 3340  0.0000000
## 3341  1.0986123
## 3342  3.6635616
## 3343  0.0000000
## 3344  0.0000000
## 3345  0.0000000
## 3346  0.0000000
## 3347  0.0000000
## 3348  0.6931472
## 3349  0.6931472
## 3350  0.0000000
## 3351  0.0000000
## 3352  0.0000000
## 3353  0.0000000
## 3354  0.0000000
## 3355  0.0000000
## 3356  0.0000000
## 3357  1.0986123
## 3358  0.0000000
## 3359  0.6931472
## 3360  0.0000000
## 3361  0.0000000
## 3362  0.6931472
## 3363  0.6931472
## 3364  0.0000000
## 3365  0.0000000
## 3366  0.0000000
## 3367  0.0000000
## 3368  0.6931472
## 3369  0.0000000
## 3370  0.0000000
## 3371  0.0000000
## 3372  0.0000000
## 3373  0.0000000
## 3374  0.0000000
## 3375  0.0000000
## 3376  0.0000000
## 3377  0.6931472
## 3378  0.0000000
## 3379  0.0000000
## 3380  0.0000000
## 3381  0.0000000
## 3382  0.0000000
## 3383  0.0000000
## 3384  0.0000000
## 3385  0.0000000
## 3386  0.0000000
## 3387  1.0986123
## 3388  0.0000000
## 3389  0.0000000
## 3390  0.0000000
## 3391  0.0000000
## 3392  0.6931472
## 3393  1.0986123
## 3394  0.0000000
## 3395  0.0000000
## 3396  1.0986123
## 3397  0.0000000
## 3398  0.0000000
## 3399  0.0000000
## 3400  0.0000000
## 3401  0.0000000
## 3402  1.3862944
## 3403  0.0000000
## 3404  0.6931472
## 3405  0.0000000
## 3406  0.0000000
## 3407  0.0000000
## 3408  0.0000000
## 3409  0.0000000
## 3410  1.0986123
## 3411  0.0000000
## 3412  0.0000000
## 3413  0.0000000
## 3414  0.0000000
## 3415  0.0000000
## 3416  0.0000000
## 3417  0.0000000
## 3418  0.0000000
## 3419  0.6931472
## 3420  0.0000000
## 3421  0.0000000
## 3422  0.0000000
## 3423  0.6931472
## 3424  0.0000000
## 3425  0.0000000
## 3426  0.6931472
## 3427  1.3862944
## 3428  0.0000000
## 3429  0.0000000
## 3430  0.6931472
## 3431  0.6931472
## 3432  0.0000000
## 3433  0.0000000
## 3434  0.0000000
## 3435  0.0000000
## 3436  0.0000000
## 3437  0.0000000
## 3438  0.0000000
## 3439  0.6931472
## 3440  0.0000000
## 3441  0.0000000
## 3442  0.0000000
## 3443  0.0000000
## 3444  0.6931472
## 3445  0.0000000
## 3446  0.0000000
## 3447  0.0000000
## 3448  0.0000000
## 3449  0.0000000
## 3450  0.0000000
## 3451  0.6931472
## 3452  0.0000000
## 3453  0.0000000
## 3454  0.0000000
## 3455  0.6931472
## 3456  0.0000000
## 3457  0.0000000
## 3458  0.0000000
## 3459  0.0000000
## 3460  0.0000000
## 3461  0.0000000
## 3462  0.0000000
## 3463  0.0000000
## 3464  0.6931472
## 3465  0.0000000
## 3466  3.9512437
## 3467  0.0000000
## 3468  0.6931472
## 3469  1.3862944
## 3470  0.0000000
## 3471  0.0000000
## 3472  1.7917595
## 3473  0.0000000
## 3474  0.0000000
## 3475  0.0000000
## 3476  0.0000000
## 3477  0.0000000
## 3478  0.6931472
## 3479  0.0000000
## 3480  3.9512437
## 3481  0.0000000
## 3482  3.9512437
## 3483  0.0000000
## 3484  0.0000000
## 3485  0.0000000
## 3486  0.0000000
## 3487  0.0000000
## 3488  0.0000000
## 3489  0.0000000
## 3490  0.0000000
## 3491  0.0000000
## 3492  0.6931472
## 3493  0.0000000
## 3494  0.0000000
## 3495  0.0000000
## 3496  0.0000000
## 3497  0.0000000
## 3498  0.0000000
## 3499  0.0000000
## 3500  0.0000000
## 3501  0.0000000
## 3502  0.0000000
## 3503  0.6931472
## 3504  1.6094379
## 3505  0.0000000
## 3506  0.0000000
## 3507  0.0000000
## 3508  0.0000000
## 3509  0.6931472
## 3510  0.0000000
## 3511  0.0000000
## 3512  0.0000000
## 3513  0.0000000
## 3514  0.0000000
## 3515  0.0000000
## 3516  0.0000000
## 3517  0.6931472
## 3518  0.0000000
## 3519  0.0000000
## 3520  0.0000000
## 3521  3.9512437
## 3522  0.0000000
## 3523  1.0986123
## 3524  0.0000000
## 3525  0.0000000
## 3526  0.0000000
## 3527  0.0000000
## 3528  0.0000000
## 3529  0.0000000
## 3530  0.0000000
## 3531  0.6931472
## 3532  0.0000000
## 3533  0.0000000
## 3534  0.0000000
## 3535  0.0000000
## 3536  0.0000000
## 3537  0.0000000
## 3538  0.0000000
## 3539  0.0000000
## 3540  0.0000000
## 3541  0.0000000
## 3542  0.6931472
## 3543  0.0000000
## 3544  0.0000000
## 3545  0.0000000
## 3546  0.0000000
## 3547  0.0000000
## 3548  0.0000000
## 3549  1.3862944
## 3550  0.0000000
## 3551  0.0000000
## 3552  0.6931472
## 3553  0.0000000
## 3554  0.0000000
## 3555  0.6931472
## 3556  0.0000000
## 3557  0.6931472
## 3558  0.6931472
## 3559  0.6931472
## 3560  0.0000000
## 3561  0.0000000
## 3562  0.0000000
## 3563  1.0986123
## 3564  0.0000000
## 3565  0.6931472
## 3566  0.6931472
## 3567  1.0986123
## 3568  2.3978953
## 3569  0.0000000
## 3570  0.0000000
## 3571  0.0000000
## 3572  0.0000000
## 3573  0.0000000
## 3574  0.0000000
## 3575  0.0000000
## 3576  0.0000000
## 3577  0.6931472
## 3578  0.0000000
## 3579  0.0000000
## 3580  0.6931472
## 3581  0.6931472
## 3582  0.0000000
## 3583  0.6931472
## 3584  0.0000000
## 3585  0.0000000
## 3586  0.0000000
## 3587  0.0000000
## 3588  0.0000000
## 3589  0.0000000
## 3590  1.0986123
## 3591  0.6931472
## 3592  0.0000000
## 3593  1.3862944
## 3594  0.6931472
## 3595  3.9512437
## 3596  0.6931472
## 3597  0.0000000
## 3598  0.0000000
## 3599  0.0000000
## 3600  0.0000000
## 3601  0.6931472
## 3602  1.3862944
## 3603  0.0000000
## 3604  0.0000000
## 3605  0.6931472
## 3606  0.6931472
## 3607  0.0000000
## 3608  0.0000000
## 3609  0.6931472
## 3610  0.6931472
## 3611  0.0000000
## 3612  0.0000000
## 3613  0.6931472
## 3614  0.0000000
## 3615  0.0000000
## 3616  0.6931472
## 3617  3.9512437
## 3618  0.0000000
## 3619  0.0000000
## 3620  0.6931472
## 3621  0.0000000
## 3622  0.0000000
## 3623  0.0000000
## 3624  0.0000000
## 3625  0.0000000
## 3626  0.0000000
## 3627  0.0000000
## 3628  3.9512437
## 3629  0.0000000
## 3630  0.0000000
## 3631  0.6931472
## 3632  0.0000000
## 3633  0.0000000
## 3634  0.0000000
## 3635  0.6931472
## 3636  0.0000000
## 3637  3.9512437
## 3638  0.0000000
## 3639  0.0000000
## 3640  1.0986123
## 3641  0.0000000
## 3642  0.6931472
## 3643  0.0000000
## 3644  0.0000000
## 3645  0.6931472
## 3646  0.6931472
## 3647  0.0000000
## 3648  0.0000000
## 3649  0.0000000
## 3650  0.0000000
## 3651  0.0000000
## 3652  0.0000000
## 3653  0.0000000
## 3654  0.0000000
## 3655  0.0000000
## 3656  0.0000000
## 3657  0.0000000
## 3658  1.0986123
## 3659  0.0000000
## 3660  0.0000000
## 3661  0.6931472
## 3662  0.6931472
## 3663  0.0000000
## 3664  0.0000000
## 3665  0.6931472
## 3666  1.0986123
## 3667  0.0000000
## 3668  0.0000000
## 3669  0.0000000
## 3670  0.0000000
## 3671  0.0000000
## 3672  0.6931472
## 3673  0.0000000
## 3674  0.0000000
## 3675  0.0000000
## 3676  0.0000000
## 3677  1.3862944
## 3678  1.3862944
## 3679  1.3862944
## 3680  1.3862944
## 3681  0.0000000
## 3682  0.0000000
## 3683  1.6094379
## 3684  0.0000000
## 3685  0.0000000
## 3686  0.0000000
## 3687  0.0000000
## 3688  0.0000000
## 3689  0.6931472
## 3690  0.0000000
## 3691  0.6931472
## 3692  0.0000000
## 3693  0.0000000
## 3694  0.0000000
## 3695  0.6931472
## 3696  0.0000000
## 3697  0.0000000
## 3698  0.0000000
## 3699  0.0000000
## 3700  0.0000000
## 3701  0.0000000
## 3702  0.6931472
## 3703  0.0000000
## 3704  0.0000000
## 3705  0.0000000
## 3706  0.0000000
## 3707  0.0000000
## 3708  0.0000000
## 3709  0.0000000
## 3710  0.0000000
## 3711  0.6931472
## 3712  0.0000000
## 3713  0.0000000
## 3714  0.0000000
## 3715  0.0000000
## 3716  0.0000000
## 3717  0.0000000
## 3718  1.0986123
## 3719  0.0000000
## 3720  0.0000000
## 3721  0.0000000
## 3722  0.0000000
## 3723  0.0000000
## 3724  0.0000000
## 3725  0.0000000
## 3726  0.0000000
## 3727  0.0000000
## 3728  0.0000000
## 3729  0.0000000
## 3730  0.6931472
## 3731  0.0000000
## 3732  3.3672958
## 3733  0.0000000
## 3734  0.6931472
## 3735  0.0000000
## 3736  0.0000000
## 3737  0.6931472
## 3738  0.6931472
## 3739  3.3672958
## 3740  3.3672958
## 3741  3.3672958
## 3742  0.0000000
## 3743  0.0000000
## 3744  0.0000000
## 3745  0.0000000
## 3746  0.0000000
## 3747  0.0000000
## 3748  0.0000000
## 3749  1.6094379
## 3750  0.0000000
## 3751  0.0000000
## 3752  0.0000000
## 3753  0.0000000
## 3754  0.0000000
## 3755  0.6931472
## 3756  3.3672958
## 3757  1.0986123
## 3758  0.0000000
## 3759  0.0000000
## 3760  0.0000000
## 3761  0.6931472
## 3762  0.0000000
## 3763  1.6094379
## 3764  0.0000000
## 3765  1.3862944
## 3766  0.6931472
## 3767  0.0000000
## 3768  0.0000000
## 3769  0.0000000
## 3770  0.0000000
## 3771  0.0000000
## 3772  0.0000000
## 3773  0.6931472
## 3774  0.0000000
## 3775  0.0000000
## 3776  0.0000000
## 3777  0.0000000
## 3778  1.0986123
## 3779  0.0000000
## 3780  1.0986123
## 3781  0.0000000
## 3782  0.0000000
## 3783  0.0000000
## 3784  0.6931472
## 3785  0.0000000
## 3786  0.0000000
## 3787  0.0000000
## 3788  0.0000000
## 3789  0.6931472
## 3790  0.0000000
## 3791  0.0000000
## 3792  1.3862944
## 3793  0.0000000
## 3794  0.6931472
## 3795  0.0000000
## 3796  1.0986123
## 3797  0.0000000
## 3798  0.0000000
## 3799  0.0000000
## 3800  0.0000000
## 3801  0.0000000
## 3802  0.0000000
## 3803  0.0000000
## 3804  0.0000000
## 3805  0.0000000
## 3806  0.0000000
## 3807  0.6931472
## 3808  0.0000000
## 3809  2.0794415
## 3810  0.0000000
## 3811  0.0000000
## 3812  1.0986123
## 3813  1.0986123
## 3814  0.0000000
## 3815  1.0986123
## 3816  0.0000000
## 3817  0.0000000
## 3818  3.9512437
## 3819  0.0000000
## 3820  0.0000000
## 3821  0.0000000
## 3822  0.0000000
## 3823  3.9512437
## 3824  0.0000000
## 3825  0.6931472
## 3826  0.0000000
## 3827  0.6931472
## 3828  0.6931472
## 3829  1.0986123
## 3830  0.0000000
## 3831  0.0000000
## 3832  0.0000000
## 3833  0.6931472
## 3834  0.0000000
## 3835  0.0000000
## 3836  0.0000000
## 3837  0.0000000
## 3838  0.0000000
## 3839  0.0000000
## 3840  0.0000000
## 3841  0.0000000
## 3842  0.0000000
## 3843  0.0000000
## 3844  0.6931472
## 3845  0.6931472
## 3846  0.0000000
## 3847  0.0000000
## 3848  0.0000000
## 3849  0.0000000
## 3850  0.0000000
## 3851  1.6094379
## 3852  0.0000000
## 3853  0.0000000
## 3854  1.3862944
## 3855  0.0000000
## 3856  0.0000000
## 3857  0.0000000
## 3858  3.3672958
## 3859  0.6931472
## 3860  1.3862944
## 3861  1.3862944
## 3862  0.0000000
## 3863  0.0000000
## 3864  0.0000000
## 3865  1.0986123
## 3866  0.0000000
## 3867  0.0000000
## 3868  0.0000000
## 3869  0.0000000
## 3870  0.0000000
## 3871  0.0000000
## 3872  0.0000000
## 3873  0.0000000
## 3874  0.0000000
## 3875  0.0000000
## 3876  0.0000000
## 3877  0.0000000
## 3878  0.6931472
## 3879  0.0000000
## 3880  0.0000000
## 3881  1.3862944
## 3882  0.6931472
## 3883  0.0000000
## 3884  0.0000000
## 3885  1.0986123
## 3886  1.0986123
## 3887  0.0000000
## 3888  0.0000000
## 3889  0.0000000
## 3890  0.0000000
## 3891  0.6931472
## 3892  1.3862944
## 3893  0.0000000
## 3894  0.0000000
## 3895  0.0000000
## 3896  0.0000000
## 3897  0.0000000
## 3898  0.0000000
## 3899  0.0000000
## 3900  0.6931472
## 3901  0.0000000
## 3902  0.0000000
## 3903  0.6931472
## 3904  0.0000000
## 3905  3.3672958
## 3906  1.0986123
## 3907  0.0000000
## 3908  1.7917595
## 3909  0.0000000
## 3910  0.0000000
## 3911  3.9512437
## 3912  2.7080502
## 3913  0.0000000
## 3914  0.0000000
## 3915  0.0000000
## 3916  0.0000000
## 3917  0.0000000
## 3918  0.0000000
## 3919  3.9512437
## 3920  0.0000000
## 3921  0.0000000
## 3922  1.3862944
## 3923  0.0000000
## 3924  0.6931472
## 3925  0.0000000
## 3926  0.0000000
## 3927  2.0794415
## 3928  0.0000000
## 3929  3.3672958
## 3930  0.0000000
## 3931  2.0794415
## 3932  0.0000000
## 3933  0.0000000
## 3934  0.0000000
## 3935  0.0000000
## 3936  0.0000000
## 3937  0.0000000
## 3938  0.0000000
## 3939  3.3672958
## 3940  0.0000000
## 3941  2.3978953
## 3942  0.6931472
## 3943  0.6931472
## 3944  0.6931472
## 3945  0.0000000
## 3946  1.0986123
## 3947  0.0000000
## 3948  0.0000000
## 3949  0.0000000
## 3950  0.0000000
## 3951  0.6931472
## 3952  0.0000000
## 3953  1.3862944
## 3954  0.0000000
## 3955  0.0000000
## 3956  0.0000000
## 3957  0.0000000
## 3958  1.3862944
## 3959  0.0000000
## 3960  0.0000000
## 3961  0.0000000
## 3962  0.0000000
## 3963  0.0000000
## 3964  0.0000000
## 3965  0.0000000
## 3966  0.6931472
## 3967  0.0000000
## 3968  1.6094379
## 3969  0.0000000
## 3970  0.0000000
## 3971  0.0000000
## 3972  0.0000000
## 3973  0.6931472
## 3974  0.0000000
## 3975  1.0986123
## 3976  0.0000000
## 3977  0.0000000
## 3978  0.0000000
## 3979  0.0000000
## 3980  0.6931472
## 3981  0.0000000
## 3982  0.0000000
## 3983  0.0000000
## 3984  0.0000000
## 3985  0.0000000
## 3986  0.6931472
## 3987  0.0000000
## 3988  0.0000000
## 3989  0.0000000
## 3990  0.0000000
## 3991  0.0000000
## 3992  0.6931472
## 3993  0.0000000
## 3994  0.0000000
## 3995  0.0000000
## 3996  0.0000000
## 3997  0.6931472
## 3998  0.0000000
## 3999  0.0000000
## 4000  2.8903718
## 4001  0.0000000
## 4002  2.3978953
## 4003  2.3978953
## 4004  0.6931472
## 4005  0.0000000
## 4006  0.0000000
## 4007  0.0000000
## 4008  0.0000000
## 4009  0.0000000
## 4010  0.0000000
## 4011  2.3978953
## 4012  0.6931472
## 4013  0.6931472
## 4014  0.0000000
## 4015  0.0000000
## 4016  0.0000000
## 4017  0.0000000
## 4018  0.6931472
## 4019  0.0000000
## 4020  0.0000000
## 4021  0.0000000
## 4022  3.3672958
## 4023  0.0000000
## 4024  0.6931472
## 4025  0.0000000
## 4026  0.0000000
## 4027  3.3672958
## 4028  0.6931472
## 4029  0.0000000
## 4030  0.6931472
## 4031  0.0000000
## 4032  3.3672958
## 4033  3.9512437
## 4034  0.0000000
## 4035  1.7917595
## 4036  0.0000000
## 4037  0.0000000
## 4038  0.6931472
## 4039  3.9512437
## 4040  0.0000000
## 4041  0.0000000
## 4042  0.0000000
## 4043  0.0000000
## 4044  0.0000000
## 4045  0.0000000
## 4046  0.0000000
## 4047  0.0000000
## 4048  1.0986123
## 4049  0.0000000
## 4050  0.0000000
## 4051  0.0000000
## 4052  0.0000000
## 4053  0.6931472
## 4054  0.0000000
## 4055  0.0000000
## 4056  0.0000000
## 4057  3.9512437
## 4058  2.9444390
## 4059  0.0000000
## 4060  0.0000000
## 4061  3.9512437
## 4062  1.0986123
## 4063  0.0000000
## 4064  0.0000000
## 4065  0.0000000
## 4066  0.0000000
## 4067  0.0000000
## 4068  3.9512437
## 4069  0.0000000
## 4070  0.0000000
## 4071  3.9512437
## 4072  3.9512437
## 4073  0.0000000
## 4074  0.0000000
## 4075  0.0000000
## 4076  0.0000000
## 4077  1.7917595
## 4078  0.0000000
## 4079  2.9444390
## 4080  0.0000000
## 4081  0.0000000
## 4082  0.0000000
## 4083  3.9512437
## 4084  0.6931472
## 4085  0.0000000
## 4086  0.0000000
## 4087  0.0000000
## 4088  0.0000000
## 4089  3.3672958
## 4090  3.3672958
## 4091  1.0986123
## 4092  0.6931472
## 4093  0.0000000
## 4094  0.0000000
## 4095  0.0000000
## 4096  0.0000000
## 4097  0.0000000
## 4098  1.0986123
## 4099  0.6931472
## 4100  0.0000000
## 4101  0.0000000
## 4102  0.0000000
## 4103  0.0000000
## 4104  0.6931472
## 4105  3.9512437
## 4106  0.0000000
## 4107  1.3862944
## 4108  0.0000000
## 4109  0.6931472
## 4110  0.6931472
## 4111  0.0000000
## 4112  0.0000000
## 4113  0.0000000
## 4114  0.0000000
## 4115  0.0000000
## 4116  0.0000000
## 4117  0.6931472
## 4118  0.0000000
## 4119  0.0000000
## 4120  0.0000000
## 4121  0.0000000
## 4122  0.0000000
## 4123  0.0000000
## 4124  0.0000000
## 4125  0.6931472
## 4126  0.6931472
## 4127  0.0000000
## 4128  0.0000000
## 4129  0.0000000
## 4130  0.0000000
## 4131  3.9512437
## 4132  0.0000000
## 4133  0.0000000
## 4134  0.6931472
## 4135  0.0000000
## 4136  0.0000000
## 4137  0.0000000
## 4138  0.6931472
## 4139  0.0000000
## 4140  0.0000000
## 4141  0.6931472
## 4142  1.0986123
## 4143  0.0000000
## 4144  0.0000000
## 4145  0.6931472
## 4146  0.6931472
## 4147  0.0000000
## 4148  0.6931472
## 4149  0.0000000
## 4150  0.0000000
## 4151  0.0000000
## 4152  0.0000000
## 4153  0.0000000
## 4154  0.0000000
## 4155  0.0000000
## 4156  0.6931472
## 4157  0.0000000
## 4158  0.0000000
## 4159  0.0000000
## 4160  0.0000000
## 4161  0.0000000
## 4162  0.0000000
## 4163  0.0000000
## 4164  0.0000000
## 4165  1.0986123
## 4166  0.0000000
## 4167  0.0000000
## 4168  0.0000000
## 4169  0.0000000
## 4170  0.6931472
## 4171  0.0000000
## 4172  0.0000000
## 4173  0.0000000
## 4174  1.6094379
## 4175  0.0000000
## 4176  0.0000000
## 4177  1.3862944
## 4178  0.0000000
## 4179  0.0000000
## 4180  0.6931472
## 4181  0.0000000
## 4182  0.6931472
## 4183  0.6931472
## 4184  0.6931472
## 4185  0.0000000
## 4186  0.0000000
## 4187  0.0000000
## 4188  0.6931472
## 4189  0.0000000
## 4190  0.0000000
## 4191  1.0986123
## 4192  0.0000000
## 4193  1.3862944
## 4194  0.0000000
## 4195  0.0000000
## 4196  0.0000000
## 4197  0.0000000
## 4198  0.6931472
## 4199  0.0000000
## 4200  0.0000000
## 4201  0.0000000
## 4202  1.0986123
## 4203  0.0000000
## 4204  0.0000000
## 4205  0.0000000
## 4206  0.0000000
## 4207  0.6931472
## 4208  0.0000000
## 4209  0.0000000
## 4210  0.0000000
## 4211  0.0000000
## 4212  0.0000000
## 4213  0.0000000
## 4214  0.0000000
## 4215  0.0000000
## 4216  1.3862944
## 4217  0.0000000
## 4218  0.0000000
## 4219  0.0000000
## 4220  0.0000000
## 4221  0.0000000
## 4222  2.0794415
## 4223  0.0000000
## 4224  0.0000000
## 4225  0.0000000
## 4226  0.0000000
## 4227  0.0000000
## 4228  1.0986123
## 4229  0.0000000
## 4230  0.0000000
## 4231  0.0000000
## 4232  0.0000000
## 4233  0.0000000
## 4234  0.6931472
## 4235  0.0000000
## 4236  0.6931472
## 4237  0.0000000
## 4238  0.0000000
## 4239  3.0445224
## 4240  0.0000000
## 4241  0.0000000
## 4242  0.0000000
## 4243  0.0000000
## 4244  0.0000000
## 4245  0.0000000
## 4246  0.6931472
## 4247  0.0000000
## 4248  0.0000000
## 4249  0.0000000
## 4250  0.0000000
## 4251  0.0000000
## 4252  0.0000000
## 4253  0.0000000
## 4254  1.6094379
## 4255  0.0000000
## 4256  0.0000000
## 4257  0.6931472
## 4258  1.6094379
## 4259  0.0000000
## 4260  1.0986123
## 4261  1.0986123
## 4262  0.0000000
## 4263  0.6931472
## 4264  0.0000000
## 4265  0.0000000
## 4266  0.0000000
## 4267  0.0000000
## 4268  0.0000000
## 4269  0.0000000
## 4270  0.6931472
## 4271  0.0000000
## 4272  0.0000000
## 4273  0.0000000
## 4274  0.0000000
## 4275  0.0000000
## 4276  0.0000000
## 4277  0.0000000
## 4278  0.0000000
## 4279  0.0000000
## 4280  0.0000000
## 4281  1.0986123
## 4282  2.0794415
## 4283  0.0000000
## 4284  0.6931472
## 4285  0.0000000
## 4286  0.6931472
## 4287  0.6931472
## 4288  0.0000000
## 4289  0.0000000
## 4290  0.0000000
## 4291  0.0000000
## 4292  0.0000000
## 4293  0.6931472
## 4294  0.0000000
## 4295  0.0000000
## 4296  0.0000000
## 4297  0.0000000
## 4298  1.7917595
## 4299  1.0986123
## 4300  1.0986123
## 4301  0.6931472
## 4302  0.0000000
## 4303  0.0000000
## 4304  0.0000000
## 4305  0.6931472
## 4306  0.0000000
## 4307  0.0000000
## 4308  0.0000000
## 4309  0.0000000
## 4310  1.3862944
## 4311  0.0000000
## 4312  0.0000000
## 4313  0.0000000
## 4314  0.0000000
## 4315  0.6931472
## 4316  0.0000000
## 4317  0.0000000
## 4318  0.6931472
## 4319  0.0000000
## 4320  0.0000000
## 4321  2.9444390
## 4322  3.6635616
## 4323  1.0986123
## 4324  0.0000000
## 4325  0.0000000
## 4326  2.3978953
## 4327  0.0000000
## 4328  0.0000000
## 4329  0.0000000
## 4330  0.0000000
## 4331  0.6931472
## 4332  0.0000000
## 4333  0.0000000
## 4334  0.6931472
## 4335  0.0000000
## 4336  0.0000000
## 4337  0.0000000
## 4338  0.0000000
## 4339  0.0000000
## 4340  0.0000000
## 4341  3.9512437
## 4342  0.0000000
## 4343  0.0000000
## 4344  0.0000000
## 4345  0.0000000
## 4346  0.0000000
## 4347  0.0000000
## 4348  0.0000000
## 4349  0.0000000
## 4350  0.0000000
## 4351  0.0000000
## 4352  1.3862944
## 4353  0.6931472
## 4354  0.0000000
## 4355  0.0000000
## 4356  0.0000000
## 4357  0.0000000
## 4358  0.0000000
## 4359  0.6931472
## 4360  0.0000000
## 4361  0.6931472
## 4362  2.1972246
## 4363  0.0000000
## 4364  0.0000000
## 4365  1.3862944
## 4366  0.0000000
## 4367  0.6931472
## 4368  1.3862944
## 4369  1.3862944
## 4370  1.3862944
## 4371  0.0000000
## 4372  0.0000000
## 4373  1.3862944
## 4374  0.0000000
## 4375  0.0000000
## 4376  0.0000000
## 4377  0.6931472
## 4378  0.0000000
## 4379  0.0000000
## 4380  0.0000000
## 4381  0.0000000
## 4382  0.6931472
## 4383  0.0000000
## 4384  0.0000000
## 4385  0.0000000
## 4386  1.0986123
## 4387  0.0000000
## 4388  0.0000000
## 4389  0.0000000
## 4390  0.0000000
## 4391  0.0000000
## 4392  0.0000000
## 4393  0.0000000
## 4394  0.0000000
## 4395  0.0000000
## 4396  0.0000000
## 4397  0.0000000
## 4398  0.0000000
## 4399  0.0000000
## 4400  0.0000000
## 4401  0.6931472
## 4402  1.3862944
## 4403  0.0000000
## 4404  0.6931472
## 4405  0.0000000
## 4406  0.6931472
## 4407  0.0000000
## 4408  0.0000000
## 4409  0.0000000
## 4410  0.6931472
## 4411  0.6931472
## 4412  0.6931472
## 4413  0.0000000
## 4414  0.0000000
## 4415  0.0000000
## 4416  0.0000000
## 4417  0.6931472
## 4418  0.0000000
## 4419  1.0986123
## 4420  0.0000000
## 4421  0.0000000
## 4422  0.0000000
## 4423  0.0000000
## 4424  0.0000000
## 4425  0.6931472
## 4426  0.0000000
## 4427  0.0000000
## 4428  0.6931472
## 4429  0.0000000
## 4430  0.0000000
## 4431  0.0000000
## 4432  0.0000000
## 4433  0.0000000
## 4434  2.3025851
## 4435  2.3025851
## 4436  1.0986123
## 4437  0.6931472
## 4438  0.6931472
## 4439  0.0000000
## 4440  0.0000000
## 4441  0.0000000
## 4442  0.0000000
## 4443  1.0986123
## 4444  0.6931472
## 4445  0.0000000
## 4446  0.6931472
## 4447  0.0000000
## 4448  0.0000000
## 4449  0.0000000
## 4450  0.0000000
## 4451  2.8903718
## 4452  0.0000000
## 4453  0.6931472
## 4454  0.0000000
## 4455  0.6931472
## 4456  2.4849066
## 4457  0.0000000
## 4458  0.0000000
## 4459  0.0000000
## 4460  0.0000000
## 4461  0.0000000
## 4462  0.0000000
## 4463  0.0000000
## 4464  0.0000000
## 4465  0.0000000
## 4466  0.0000000
## 4467  0.0000000
## 4468  0.0000000
## 4469  0.0000000
## 4470  0.0000000
## 4471  0.0000000
## 4472  0.0000000
## 4473  1.0986123
## 4474  3.9512437
## 4475  0.0000000
## 4476  0.0000000
## 4477  0.0000000
## 4478  0.0000000
## 4479  0.6931472
## 4480  0.0000000
## 4481  0.0000000
## 4482  0.0000000
## 4483  0.0000000
## 4484  1.6094379
## 4485  0.0000000
## 4486  0.0000000
## 4487  0.0000000
## 4488  0.6931472
## 4489  0.0000000
## 4490  0.0000000
## 4491  0.0000000
## 4492  0.6931472
## 4493  0.0000000
## 4494  1.3862944
## 4495  0.6931472
## 4496  0.0000000
## 4497  0.6931472
## 4498  1.0986123
## 4499  0.0000000
## 4500  0.0000000
## 4501  0.0000000
## 4502  0.0000000
## 4503  0.0000000
## 4504  0.0000000
## 4505  0.6931472
## 4506  0.6931472
## 4507  0.0000000
## 4508  0.0000000
## 4509  0.0000000
## 4510  0.0000000
## 4511  0.0000000
## 4512  0.6931472
## 4513  0.0000000
## 4514  0.0000000
## 4515  0.0000000
## 4516  0.0000000
## 4517  0.0000000
## 4518  1.3862944
## 4519  0.0000000
## 4520  0.6931472
## 4521  0.0000000
## 4522  1.0986123
## 4523  1.3862944
## 4524  2.9444390
## 4525  0.0000000
## 4526  0.0000000
## 4527  0.0000000
## 4528  0.0000000
## 4529  0.0000000
## 4530  0.0000000
## 4531  0.0000000
## 4532  0.6931472
## 4533  0.0000000
## 4534  0.0000000
## 4535  0.0000000
## 4536  1.3862944
## 4537  0.0000000
## 4538  0.0000000
## 4539  0.0000000
## 4540  0.0000000
## 4541  0.0000000
## 4542  1.0986123
## 4543  0.0000000
## 4544  0.0000000
## 4545  0.6931472
## 4546  0.0000000
## 4547  2.3978953
## 4548  0.0000000
## 4549  0.0000000
## 4550  2.0794415
## 4551  0.0000000
## 4552  0.0000000
## 4553  0.0000000
## 4554  0.0000000
## 4555  0.6931472
## 4556  2.1972246
## 4557  0.0000000
## 4558  0.6931472
## 4559  0.0000000
## 4560  0.0000000
## 4561  0.0000000
## 4562  0.0000000
## 4563  0.0000000
## 4564  0.0000000
## 4565  0.0000000
## 4566  0.0000000
## 4567  0.0000000
## 4568  0.0000000
## 4569  0.0000000
## 4570  1.0986123
## 4571  0.0000000
## 4572  0.0000000
## 4573  0.0000000
## 4574  0.0000000
## 4575  0.0000000
## 4576  0.0000000
## 4577  0.6931472
## 4578  0.0000000
## 4579  0.0000000
## 4580  0.0000000
## 4581  0.0000000
## 4582  0.0000000
## 4583  0.0000000
## 4584  0.0000000
## 4585  0.0000000
## 4586  2.0794415
## 4587  0.0000000
## 4588  0.0000000
## 4589  2.0794415
## 4590  2.0794415
## 4591  1.3862944
## 4592  0.6931472
## 4593  0.0000000
## 4594  0.0000000
## 4595  1.7917595
## 4596  0.0000000
## 4597  1.0986123
## 4598  3.3672958
## 4599  2.0794415
## 4600  1.0986123
## 4601  2.0794415
## 4602  0.6931472
## 4603  1.0986123
## 4604  0.0000000
## 4605  0.0000000
## 4606  0.6931472
## 4607  0.6931472
## 4608  0.0000000
## 4609  0.0000000
## 4610  0.0000000
## 4611  1.0986123
## 4612  1.0986123
## 4613  0.0000000
## 4614  0.0000000
## 4615  0.0000000
## 4616  2.9444390
## 4617  3.9512437
## 4618  0.0000000
## 4619  0.0000000
## 4620  0.0000000
## 4621  0.0000000
## 4622  0.0000000
## 4623  0.6931472
## 4624  1.0986123
## 4625  1.9459101
## 4626  0.0000000
## 4627  0.6931472
## 4628  0.0000000
## 4629  3.6635616
## 4630  0.0000000
## 4631  0.0000000
## 4632  3.6635616
## 4633  3.9512437
## 4634  0.0000000
## 4635  3.9512437
## 4636  1.0986123
## 4637  0.0000000
## 4638  0.0000000
## 4639  1.0986123
## 4640  0.6931472
## 4641  0.6931472
## 4642  0.0000000
## 4643  4.5643482
## 4644  0.0000000
## 4645  0.0000000
## 4646  0.0000000
## 4647  0.0000000
## 4648  0.0000000
## 4649  3.3672958
## 4650  0.0000000
## 4651  0.0000000
## 4652  0.0000000
## 4653  0.0000000
## 4654  3.0445224
## 4655  0.0000000
## 4656  0.0000000
## 4657  0.0000000
## 4658  0.0000000
## 4659  0.0000000
## 4660  0.0000000
## 4661  1.3862944
## 4662  0.0000000
## 4663  1.0986123
## 4664  1.0986123
## 4665  0.0000000
## 4666  0.0000000
## 4667  0.0000000
## 4668  0.0000000
## 4669  0.0000000
## 4670  0.0000000
## 4671  0.0000000
## 4672  0.0000000
## 4673  0.0000000
## 4674  0.0000000
## 4675  0.6931472
## 4676  0.0000000
## 4677  0.0000000
## 4678  0.0000000
## 4679  0.0000000
## 4680  0.0000000
## 4681  0.0000000
## 4682  0.0000000
## 4683  1.6094379
## 4684  1.6094379
## 4685  1.6094379
## 4686  0.0000000
## 4687  0.0000000
## 4688  0.0000000
## 4689  0.0000000
## 4690  0.6931472
## 4691  3.6635616
## 4692  0.0000000
## 4693  0.6931472
## 4694  0.0000000
## 4695  0.0000000
## 4696  0.0000000
## 4697  0.0000000
## 4698  0.6931472
## 4699  0.6931472
## 4700  0.0000000
## 4701  0.0000000
## 4702  0.0000000
## 4703  0.0000000
## 4704  0.0000000
## 4705  0.0000000
## 4706  0.0000000
## 4707  0.6931472
## 4708  0.0000000
## 4709  0.0000000
## 4710  0.0000000
## 4711  3.9512437
## 4712  0.0000000
## 4713  0.0000000
## 4714  0.0000000
## 4715  0.6931472
## 4716  0.6931472
## 4717  0.0000000
## 4718  0.0000000
## 4719  2.6390573
## 4720  0.0000000
## 4721  1.6094379
## 4722  0.0000000
## 4723  0.0000000
## 4724  0.0000000
## 4725  1.6094379
## 4726  0.0000000
## 4727  0.0000000
## 4728  0.0000000
## 4729  0.0000000
## 4730  0.0000000
## 4731  0.6931472
## 4732  0.0000000
## 4733  3.9512437
## 4734  0.0000000
## 4735  0.0000000
## 4736  0.0000000
## 4737  0.0000000
## 4738  0.0000000
## 4739  0.0000000
## 4740  0.0000000
## 4741  0.0000000
## 4742  0.0000000
## 4743  0.0000000
## 4744  3.2580965
## 4745  1.6094379
## 4746  0.0000000
## 4747  0.0000000
## 4748  0.0000000
## 4749  0.0000000
## 4750  0.0000000
## 4751  0.6931472
## 4752  0.0000000
## 4753  0.6931472
## 4754  0.0000000
## 4755  0.6931472
## 4756  0.0000000
## 4757  0.6931472
## 4758  0.6931472
## 4759  0.0000000
## 4760  0.0000000
## 4761  0.0000000
## 4762  0.0000000
## 4763  1.3862944
## 4764  0.6931472
## 4765  0.0000000
## 4766  0.0000000
## 4767  0.0000000
## 4768  0.0000000
## 4769  0.0000000
## 4770  0.0000000
## 4771  0.0000000
## 4772  2.0794415
## 4773  2.0794415
## 4774  3.0445224
## 4775  0.0000000
## 4776  0.6931472
## 4777  0.6931472
## 4778  3.6635616
## 4779  0.0000000
## 4780  0.6931472
## 4781  0.0000000
## 4782  2.8903718
## 4783  0.0000000
## 4784  0.0000000
## 4785  0.0000000
## 4786  0.0000000
## 4787  0.0000000
## 4788  0.6931472
## 4789  0.6931472
## 4790  0.0000000
## 4791  0.0000000
## 4792  0.0000000
## 4793  0.6931472
## 4794  0.0000000
## 4795  0.0000000
## 4796  0.0000000
## 4797  0.0000000
## 4798  0.0000000
## 4799  0.0000000
## 4800  0.6931472
## 4801  0.0000000
## 4802  0.0000000
## 4803  3.9512437
## 4804  0.0000000
## 4805  0.0000000
## 4806  0.0000000
## 4807  1.0986123
## 4808  1.0986123
## 4809  0.6931472
## 4810  3.9512437
## 4811  0.0000000
## 4812  3.6635616
## 4813  0.0000000
## 4814  3.6635616
## 4815  0.0000000
## 4816  0.0000000
## 4817  0.0000000
## 4818  4.5643482
## 4819  0.6931472
## 4820  0.0000000
## 4821  0.0000000
## 4822  2.8903718
## 4823  0.6931472
## 4824  0.0000000
## 4825  0.0000000
## 4826  0.0000000
## 4827  1.0986123
## 4828  0.0000000
## 4829  0.0000000
## 4830  0.0000000
## 4831  0.0000000
## 4832  0.0000000
## 4833  0.0000000
## 4834  0.0000000
## 4835  1.0986123
## 4836  1.3862944
## 4837  1.9459101
## 4838  1.3862944
## 4839  1.9459101
## 4840  0.0000000
## 4841  0.0000000
## 4842  0.0000000
## 4843  0.0000000
## 4844  0.0000000
## 4845  0.0000000
## 4846  0.0000000
## 4847  0.6931472
## 4848  0.0000000
## 4849  0.0000000
## 4850  0.0000000
## 4851  0.0000000
## 4852  0.6931472
## 4853  0.0000000
## 4854  0.0000000
## 4855  0.0000000
## 4856  0.0000000
## 4857  0.0000000
## 4858  3.9512437
## 4859  0.0000000
## 4860  0.0000000
## 4861  0.0000000
## 4862  0.0000000
## 4863  0.0000000
## 4864  0.0000000
## 4865  1.6094379
## 4866  1.6094379
## 4867  0.0000000
## 4868  0.6931472
## 4869  0.0000000
## 4870  0.0000000
## 4871  0.0000000
## 4872  0.0000000
## 4873  0.0000000
## 4874  0.0000000
## 4875  0.0000000
## 4876  3.9512437
## 4877  2.6390573
## 4878  1.7917595
## 4879  4.5643482
## 4880  0.0000000
## 4881  1.6094379
## 4882  0.0000000
## 4883  0.0000000
## 4884  0.0000000
## 4885  0.0000000
## 4886  0.0000000
## 4887  0.0000000
## 4888  0.0000000
## 4889  0.0000000
## 4890  0.0000000
## 4891  0.0000000
## 4892  0.0000000
## 4893  4.5643482
## 4894  0.0000000
## 4895  0.6931472
## 4896  0.0000000
## 4897  0.6931472
## 4898  0.0000000
## 4899  0.0000000
## 4900  0.6931472
## 4901  0.0000000
## 4902  0.0000000
## 4903  1.7917595
## 4904  0.0000000
## 4905  0.0000000
## 4906  0.0000000
## 4907  0.0000000
## 4908  0.6931472
## 4909  0.0000000
## 4910  0.0000000
## 4911  0.0000000
## 4912  0.0000000
## 4913  0.0000000
## 4914  0.0000000
## 4915  0.6931472
## 4916  0.0000000
## 4917  0.0000000
## 4918  0.0000000
## 4919  0.0000000
## 4920  0.6931472
## 4921  0.0000000
## 4922  0.0000000
## 4923  1.0986123
## 4924  0.6931472
## 4925  0.0000000
## 4926  0.6931472
## 4927  0.6931472
## 4928  1.0986123
## 4929  0.0000000
## 4930  0.0000000
## 4931  0.0000000
## 4932  1.0986123
## 4933  0.0000000
## 4934  3.9512437
## 4935  0.0000000
## 4936  0.6931472
## 4937  2.9444390
## 4938  3.3672958
## 4939  0.0000000
## 4940  0.0000000
## 4941  1.0986123
## 4942  0.0000000
## 4943  0.0000000
## 4944  1.3862944
## 4945  0.6931472
## 4946  0.0000000
## 4947  0.0000000
## 4948  0.0000000
## 4949  0.0000000
## 4950  0.0000000
## 4951  0.0000000
## 4952  0.0000000
## 4953  0.0000000
## 4954  0.6931472
## 4955  0.0000000
## 4956  0.0000000
## 4957  0.0000000
## 4958  0.0000000
## 4959  0.0000000
## 4960  0.0000000
## 4961  1.0986123
## 4962  0.0000000
## 4963  0.0000000
## 4964  0.0000000
## 4965  0.0000000
## 4966  0.6931472
## 4967  0.0000000
## 4968  0.0000000
## 4969  1.0986123
## 4970  0.6931472
## 4971  0.0000000
## 4972  1.0986123
## 4973  0.0000000
## 4974  0.0000000
## 4975  0.6931472
## 4976  0.0000000
## 4977  1.9459101
## 4978  1.0986123
## 4979  0.0000000
## 4980  2.1972246
## 4981  0.0000000
## 4982  0.0000000
## 4983  0.0000000
## 4984  0.0000000
## 4985  0.0000000
## 4986  0.0000000
## 4987  0.6931472
## 4988  0.0000000
## 4989  0.0000000
## 4990  0.0000000
## 4991  1.0986123
## 4992  0.0000000
## 4993  0.0000000
## 4994  0.0000000
## 4995  0.0000000
## 4996  1.0986123
## 4997  0.0000000
## 4998  3.9512437
## 4999  0.0000000
## 5000  0.0000000
## 5001  0.0000000
## 5002  1.0986123
## 5003  0.0000000
## 5004  0.0000000
## 5005  0.0000000
## 5006  0.6931472
## 5007  0.0000000
## 5008  0.0000000
## 5009  0.0000000
## 5010  0.0000000
## 5011  3.9512437
## 5012  3.6635616
## 5013  0.0000000
## 5014  0.0000000
## 5015  0.0000000
## 5016  0.0000000
## 5017  0.6931472
## 5018  1.0986123
## 5019  0.0000000
## 5020  0.0000000
## 5021  0.0000000
## 5022  1.0986123
## 5023  0.0000000
## 5024  0.0000000
## 5025  0.0000000
## 5026  0.0000000
## 5027  0.0000000
## 5028  0.0000000
## 5029  0.0000000
## 5030  0.0000000
## 5031  2.3025851
## 5032  0.0000000
## 5033  0.0000000
## 5034  0.0000000
## 5035  0.0000000
## 5036  0.0000000
## 5037  0.0000000
## 5038  0.0000000
## 5039  0.6931472
## 5040  0.6931472
## 5041  1.6094379
## 5042  0.0000000
## 5043  0.0000000
## 5044  1.3862944
## 5045  1.0986123
## 5046  0.0000000
## 5047  0.0000000
## 5048  0.6931472
## 5049  0.0000000
## 5050  0.0000000
## 5051  0.0000000
## 5052  1.7917595
## 5053  0.0000000
## 5054  0.0000000
## 5055  0.0000000
## 5056  0.0000000
## 5057  0.0000000
## 5058  0.0000000
## 5059  0.0000000
## 5060  0.0000000
## 5061  0.0000000
## 5062  0.0000000
## 5063  0.0000000
## 5064  0.0000000
## 5065  0.6931472
## 5066  1.3862944
## 5067  1.0986123
## 5068  0.0000000
## 5069  0.0000000
## 5070  0.0000000
## 5071  0.0000000
## 5072  0.0000000
## 5073  0.6931472
## 5074  0.6931472
## 5075  1.6094379
## 5076  0.0000000
## 5077  0.6931472
## 5078  0.0000000
## 5079  0.0000000
## 5080  0.0000000
## 5081  0.0000000
## 5082  0.6931472
## 5083  2.3025851
## 5084  0.0000000
## 5085  0.0000000
## 5086  1.6094379
## 5087  0.0000000
## 5088  0.6931472
## 5089  0.0000000
## 5090  0.6931472
## 5091  0.0000000
## 5092  0.6931472
## 5093  0.0000000
## 5094  0.0000000
## 5095  0.0000000
## 5096  0.6931472
## 5097  0.0000000
## 5098  0.0000000
## 5099  0.0000000
## 5100  0.0000000
## 5101  0.0000000
## 5102  0.0000000
## 5103  0.0000000
## 5104  0.0000000
## 5105  0.0000000
## 5106  0.0000000
## 5107  2.5649494
## 5108  0.0000000
## 5109  0.0000000
## 5110  0.0000000
## 5111  0.0000000
## 5112  0.0000000
## 5113  0.6931472
## 5114  0.0000000
## 5115  0.6931472
## 5116  0.0000000
## 5117  0.0000000
## 5118  0.6931472
## 5119  1.6094379
## 5120  2.5649494
## 5121  0.0000000
## 5122  0.6931472
## 5123  0.6931472
## 5124  0.0000000
## 5125  0.6931472
## 5126  1.3862944
## 5127  0.0000000
## 5128  0.0000000
## 5129  0.0000000
## 5130  0.0000000
## 5131  0.6931472
## 5132  0.0000000
## 5133  0.6931472
## 5134  0.6931472
## 5135  0.6931472
## 5136  0.0000000
## 5137  1.0986123
## 5138  0.0000000
## 5139  0.0000000
## 5140  0.0000000
## 5141  0.0000000
## 5142  0.0000000
## 5143  0.0000000
## 5144  1.6094379
## 5145  0.0000000
## 5146  0.6931472
## 5147  0.0000000
## 5148  0.0000000
## 5149  0.6931472
## 5150  0.0000000
## 5151  0.0000000
## 5152  0.0000000
## 5153  0.0000000
## 5154  0.6931472
## 5155  0.0000000
## 5156  0.0000000
## 5157  0.0000000
## 5158  0.0000000
## 5159  0.6931472
## 5160  0.0000000
## 5161  1.9459101
## 5162  1.9459101
## 5163  1.9459101
## 5164  0.6931472
## 5165  0.0000000
## 5166  1.6094379
## 5167  0.6931472
## 5168  0.0000000
## 5169  0.0000000
## 5170  0.0000000
## 5171  0.6931472
## 5172  0.0000000
## 5173  0.0000000
## 5174  0.0000000
## 5175  0.0000000
## 5176  0.0000000
## 5177  0.0000000
## 5178  0.0000000
## 5179  0.0000000
## 5180  0.0000000
## 5181  0.0000000
## 5182  1.6094379
## 5183  0.0000000
## 5184  0.0000000
## 5185  0.0000000
## 5186  0.0000000
## 5187  0.0000000
## 5188  1.0986123
## 5189  0.6931472
## 5190  0.0000000
## 5191  0.0000000
## 5192  2.3025851
## 5193  0.0000000
## 5194  0.6931472
## 5195  0.0000000
## 5196  0.0000000
## 5197  0.0000000
## 5198  0.0000000
## 5199  1.6094379
## 5200  0.0000000
## 5201  0.0000000
## 5202  0.0000000
## 5203  0.6931472
## 5204  0.0000000
## 5205  0.0000000
## 5206  1.0986123
## 5207  0.0000000
## 5208  0.0000000
## 5209  0.6931472
## 5210  0.0000000
## 5211  0.0000000
## 5212  1.3862944
## 5213  0.0000000
## 5214  0.0000000
## 5215  0.6931472
## 5216  1.6094379
## 5217  0.0000000
## 5218  0.6931472
## 5219  0.0000000
## 5220  0.0000000
## 5221  0.0000000
## 5222  0.6931472
## 5223  1.6094379
## 5224  0.6931472
## 5225  0.0000000
## 5226  0.6931472
## 5227  0.0000000
## 5228  0.0000000
## 5229  0.0000000
## 5230  0.0000000
## 5231  0.0000000
## 5232  0.0000000
## 5233  0.0000000
## 5234  0.0000000
## 5235  0.0000000
## 5236  0.0000000
## 5237  0.0000000
## 5238  0.0000000
## 5239  0.0000000
## 5240  0.0000000
## 5241  0.6931472
## 5242  0.0000000
## 5243  0.0000000
## 5244  0.0000000
## 5245  0.0000000
## 5246  0.0000000
## 5247  0.0000000
## 5248  0.0000000
## 5249  0.0000000
## 5250  0.0000000
## 5251  1.6094379
## 5252  0.6931472
## 5253  0.0000000
## 5254  0.0000000
## 5255  1.6094379
## 5256  1.3862944
## 5257  0.0000000
## 5258  0.0000000
## 5259  0.0000000
## 5260  0.0000000
## 5261  0.0000000
## 5262  0.6931472
## 5263  0.0000000
## 5264  0.0000000
## 5265  1.3862944
## 5266  0.6931472
## 5267  0.0000000
## 5268  0.0000000
## 5269  0.0000000
## 5270  0.0000000
## 5271  0.0000000
## 5272  0.6931472
## 5273  0.0000000
## 5274  0.0000000
## 5275  0.6931472
## 5276  0.0000000
## 5277  0.0000000
## 5278  0.0000000
## 5279  0.0000000
## 5280  0.0000000
## 5281  0.0000000
## 5282  0.0000000
## 5283  0.0000000
## 5284  2.1972246
## 5285  0.0000000
## 5286  0.0000000
## 5287  0.0000000
## 5288  0.0000000
## 5289  0.0000000
## 5290  0.0000000
## 5291  0.0000000
## 5292  0.0000000
## 5293  0.0000000
## 5294  0.0000000
## 5295  0.0000000
## 5296  0.0000000
## 5297  0.0000000
## 5298  0.0000000
## 5299  0.0000000
## 5300  0.0000000
## 5301  0.0000000
## 5302  0.0000000
## 5303  0.0000000
## 5304  0.0000000
## 5305  0.0000000
## 5306  0.0000000
## 5307  0.0000000
## 5308  1.3862944
## 5309  1.0986123
## 5310  2.8903718
## 5311  2.8903718
## 5312  1.0986123
## 5313  0.0000000
## 5314  0.0000000
## 5315  0.6931472
## 5316  0.0000000
## 5317  0.6931472
## 5318  0.0000000
## 5319  1.0986123
## 5320  0.0000000
## 5321  0.0000000
## 5322  0.6931472
## 5323  0.0000000
## 5324  0.0000000
## 5325  0.0000000
## 5326  0.0000000
## 5327  0.6931472
## 5328  0.0000000
## 5329  0.0000000
## 5330  0.0000000
## 5331  2.6390573
## 5332  1.9459101
## 5333  0.0000000
## 5334  0.0000000
## 5335  0.0000000
## 5336  0.6931472
## 5337  1.0986123
## 5338  0.0000000
## 5339  0.0000000
## 5340  1.3862944
## 5341  0.0000000
## 5342  0.0000000
## 5343  0.0000000
## 5344  0.6931472
## 5345  0.0000000
## 5346  0.0000000
## 5347  0.0000000
## 5348  0.0000000
## 5349  1.0986123
## 5350  1.0986123
## 5351  0.0000000
## 5352  0.0000000
## 5353  0.0000000
## 5354  0.0000000
## 5355  0.0000000
## 5356  3.9512437
## 5357  0.0000000
## 5358  0.0000000
## 5359  0.0000000
## 5360  0.6931472
## 5361  1.6094379
## 5362  0.6931472
## 5363  0.0000000
## 5364  0.0000000
## 5365  2.0794415
## 5366  0.6931472
## 5367  0.6931472
## 5368  0.0000000
## 5369  0.0000000
## 5370  0.0000000
## 5371  0.0000000
## 5372  0.0000000
## 5373  0.6931472
## 5374  0.0000000
## 5375  0.0000000
## 5376  0.0000000
## 5377  0.0000000
## 5378  0.0000000
## 5379  1.0986123
## 5380  0.0000000
## 5381  0.0000000
## 5382  0.6931472
## 5383  0.0000000
## 5384  0.0000000
## 5385  1.0986123
## 5386  0.0000000
## 5387  0.0000000
## 5388  3.6635616
## 5389  0.0000000
## 5390  0.0000000
## 5391  0.0000000
## 5392  0.0000000
## 5393  0.0000000
## 5394  0.0000000
## 5395  3.9512437
## 5396  0.0000000
## 5397  0.0000000
## 5398  0.0000000
## 5399  0.0000000
## 5400  0.6931472
## 5401  2.3025851
## 5402  0.6931472
## 5403  0.0000000
## 5404  0.0000000
## 5405  0.6931472
## 5406  0.0000000
## 5407  0.0000000
## 5408  0.0000000
## 5409  0.0000000
## 5410  0.0000000
## 5411  0.0000000
## 5412  0.0000000
## 5413  0.6931472
## 5414  0.0000000
## 5415  0.0000000
## 5416  0.6931472
## 5417  0.0000000
## 5418  0.0000000
## 5419  0.0000000
## 5420  0.0000000
## 5421  0.0000000
## 5422  0.0000000
## 5423  0.6931472
## 5424  0.6931472
## 5425  0.0000000
## 5426  0.6931472
## 5427  0.0000000
## 5428  1.0986123
## 5429  0.0000000
## 5430  0.0000000
## 5431  0.0000000
## 5432  0.0000000
## 5433  0.0000000
## 5434  0.0000000
## 5435  0.6931472
## 5436  0.0000000
## 5437  0.0000000
## 5438  0.0000000
## 5439  0.0000000
## 5440  0.0000000
## 5441  0.0000000
## 5442  0.0000000
## 5443  0.0000000
## 5444  0.0000000
## 5445  0.0000000
## 5446  0.0000000
## 5447  0.0000000
## 5448  0.0000000
## 5449  0.0000000
## 5450  0.0000000
## 5451  3.9512437
## 5452  0.0000000
## 5453  0.0000000
## 5454  0.0000000
## 5455  1.6094379
## 5456  0.0000000
## 5457  1.6094379
## 5458  0.0000000
## 5459  0.0000000
## 5460  2.3025851
## 5461  0.6931472
## 5462  0.0000000
## 5463  0.0000000
## 5464  0.0000000
## 5465  0.0000000
## 5466  0.6931472
## 5467  0.0000000
## 5468  0.0000000
## 5469  0.6931472
## 5470  0.0000000
## 5471  0.0000000
## 5472  0.0000000
## 5473  0.6931472
## 5474  1.3862944
## 5475  0.6931472
## 5476  0.0000000
## 5477  0.0000000
## 5478  0.6931472
## 5479  0.0000000
## 5480  0.0000000
## 5481  0.0000000
## 5482  1.0986123
## 5483  0.0000000
## 5484  0.6931472
## 5485  0.0000000
## 5486  0.0000000
## 5487  0.0000000
## 5488  2.1972246
## 5489  2.1972246
## 5490  0.0000000
## 5491  0.0000000
## 5492  0.0000000
## 5493  0.0000000
## 5494  0.0000000
## 5495  1.0986123
## 5496  0.0000000
## 5497  0.0000000
## 5498  0.0000000
## 5499  0.0000000
## 5500  0.0000000
## 5501  0.0000000
## 5502  0.6931472
## 5503  0.6931472
## 5504  0.0000000
## 5505  0.0000000
## 5506  0.0000000
## 5507  0.0000000
## 5508  0.6931472
## 5509  0.0000000
## 5510  0.6931472
## 5511  0.6931472
## 5512  0.0000000
## 5513  0.0000000
## 5514  2.0794415
## 5515  2.4849066
## 5516  1.0986123
## 5517  0.0000000
## 5518  0.0000000
## 5519  0.0000000
## 5520  0.0000000
## 5521  0.0000000
## 5522  0.6931472
## 5523  1.0986123
## 5524  0.0000000
## 5525  0.0000000
## 5526  0.0000000
## 5527  0.0000000
## 5528  0.0000000
## 5529  0.0000000
## 5530  0.0000000
## 5531  0.0000000
## 5532  0.0000000
## 5533  1.3862944
## 5534  0.6931472
## 5535  0.0000000
## 5536  1.3862944
## 5537  0.0000000
## 5538  0.0000000
## 5539  0.6931472
## 5540  0.0000000
## 5541  0.6931472
## 5542  0.0000000
## 5543  0.6931472
## 5544  1.3862944
## 5545  0.0000000
## 5546  1.0986123
## 5547  0.6931472
## 5548  0.0000000
## 5549  0.0000000
## 5550  0.0000000
## 5551  0.0000000
## 5552  0.6931472
## 5553  0.0000000
## 5554  0.6931472
## 5555  0.0000000
## 5556  0.0000000
## 5557  1.0986123
## 5558  0.0000000
## 5559  1.3862944
## 5560  0.0000000
## 5561  0.0000000
## 5562  0.6931472
## 5563  0.0000000
## 5564  0.0000000
## 5565  0.0000000
## 5566  0.0000000
## 5567  0.0000000
## 5568  0.0000000
## 5569  0.0000000
## 5570  0.0000000
## 5571  0.6931472
## 5572  0.0000000
## 5573  0.0000000
## 5574  0.0000000
## 5575  1.0986123
## 5576  0.0000000
## 5577  0.0000000
## 5578  0.0000000
## 5579  0.0000000
## 5580  0.0000000
## 5581  1.0986123
## 5582  0.0000000
## 5583  0.0000000
## 5584  1.3862944
## 5585  0.0000000
## 5586  0.6931472
## 5587  0.0000000
## 5588  3.6635616
## 5589  3.6635616
## 5590  0.0000000
## 5591  0.0000000
## 5592  0.0000000
## 5593  0.6931472
## 5594  0.6931472
## 5595  1.0986123
## 5596  1.7917595
## 5597  1.7917595
## 5598  1.9459101
## 5599  0.0000000
## 5600  2.9444390
## 5601  0.0000000
## 5602  0.6931472
## 5603  0.6931472
## 5604  0.0000000
## 5605  0.0000000
## 5606  0.6931472
## 5607  0.0000000
## 5608  2.9444390
## 5609  0.6931472
## 5610  0.0000000
## 5611  0.0000000
## 5612  0.6931472
## 5613  0.0000000
## 5614  0.0000000
## 5615  2.8903718
## 5616  0.0000000
## 5617  0.6931472
## 5618  2.3025851
## 5619  0.0000000
## 5620  0.0000000
## 5621  0.0000000
## 5622  0.0000000
## 5623  0.6931472
## 5624  0.6931472
## 5625  0.0000000
## 5626  1.0986123
## 5627  0.0000000
## 5628  0.0000000
## 5629  0.0000000
## 5630  0.0000000
## 5631  0.0000000
## 5632  0.6931472
## 5633  0.0000000
## 5634  0.0000000
## 5635  1.3862944
## 5636  0.6931472
## 5637  1.3862944
## 5638  1.9459101
## 5639  1.9459101
## 5640  1.0986123
## 5641  1.0986123
## 5642  0.0000000
## 5643  0.0000000
## 5644  0.0000000
## 5645  0.0000000
## 5646  0.0000000
## 5647  0.0000000
## 5648  0.0000000
## 5649  0.0000000
## 5650  0.0000000
## 5651  0.0000000
## 5652  0.0000000
## 5653  0.0000000
## 5654  0.0000000
## 5655  2.3025851
## 5656  0.6931472
## 5657  0.0000000
## 5658  0.0000000
## 5659  0.0000000
## 5660  0.0000000
## 5661  0.0000000
## 5662  0.0000000
## 5663  0.0000000
## 5664  2.1972246
## 5665  0.0000000
## 5666  0.0000000
## 5667  0.0000000
## 5668  0.0000000
## 5669  0.0000000
## 5670  0.0000000
## 5671  0.0000000
## 5672  1.0986123
## 5673  0.6931472
## 5674  1.0986123
## 5675  0.0000000
## 5676  0.0000000
## 5677  0.6931472
## 5678  0.0000000
## 5679  0.0000000
## 5680  0.0000000
## 5681  0.0000000
## 5682  0.0000000
## 5683  2.7080502
## 5684  0.0000000
## 5685  0.6931472
## 5686  2.1972246
## 5687  0.0000000
## 5688  0.0000000
## 5689  0.0000000
## 5690  0.0000000
## 5691  0.0000000
## 5692  0.0000000
## 5693  0.0000000
## 5694  0.0000000
## 5695  0.0000000
## 5696  1.3862944
## 5697  1.0986123
## 5698  0.0000000
## 5699  0.0000000
## 5700  3.0445224
## 5701  0.0000000
## 5702  0.0000000
## 5703  1.0986123
## 5704  0.0000000
## 5705  0.0000000
## 5706  0.0000000
## 5707  0.0000000
## 5708  0.0000000
## 5709  0.0000000
## 5710  3.6635616
## 5711  3.6635616
## 5712  0.0000000
## 5713  0.0000000
## 5714  0.0000000
## 5715  0.0000000
## 5716  0.0000000
## 5717  0.6931472
## 5718  0.6931472
## 5719  0.6931472
## 5720  0.6931472
## 5721  0.6931472
## 5722  0.6931472
## 5723  0.0000000
## 5724  0.0000000
## 5725  0.6931472
## 5726  0.0000000
## 5727  0.0000000
## 5728  3.0445224
## 5729  0.0000000
## 5730  2.8903718
## 5731  0.0000000
## 5732  0.6931472
## 5733  0.0000000
## 5734  0.0000000
## 5735  0.6931472
## 5736  0.6931472
## 5737  0.6931472
## 5738  0.0000000
## 5739  0.6931472
## 5740  0.0000000
## 5741  0.6931472
## 5742  0.0000000
## 5743  1.3862944
## 5744  0.0000000
## 5745  0.0000000
## 5746  0.0000000
## 5747  0.0000000
## 5748  0.0000000
## 5749  0.0000000
## 5750  0.0000000
## 5751  3.3672958
## 5752  0.0000000
## 5753  0.6931472
## 5754  0.0000000
## 5755  0.0000000
## 5756  0.0000000
## 5757  0.6931472
## 5758  0.6931472
## 5759  0.0000000
## 5760  1.3862944
## 5761  0.0000000
## 5762  1.3862944
## 5763  1.0986123
## 5764  0.0000000
## 5765  0.0000000
## 5766  0.0000000
## 5767  0.0000000
## 5768  0.0000000
## 5769  0.0000000
## 5770  0.0000000
## 5771  0.0000000
## 5772  0.0000000
## 5773  1.0986123
## 5774  0.0000000
## 5775  0.0000000
## 5776  0.6931472
## 5777  0.0000000
## 5778  0.0000000
## 5779  0.6931472
## 5780  2.1972246
## 5781  0.0000000
## 5782  0.0000000
## 5783  0.0000000
## 5784  0.0000000
## 5785  0.0000000
## 5786  0.0000000
## 5787  0.6931472
## 5788  2.1972246
## 5789  0.6931472
## 5790  0.0000000
## 5791  2.7080502
## 5792  0.0000000
## 5793  0.0000000
## 5794  1.0986123
## 5795  0.0000000
## 5796  0.0000000
## 5797  0.0000000
## 5798  1.6094379
## 5799  0.0000000
## 5800  0.0000000
## 5801  0.0000000
## 5802  0.0000000
## 5803  0.0000000
## 5804  0.0000000
## 5805  0.0000000
## 5806  1.0986123
## 5807  0.0000000
## 5808  2.7080502
## 5809  0.0000000
## 5810  0.6931472
## 5811  0.0000000
## 5812  0.0000000
## 5813  0.0000000
## 5814  0.0000000
## 5815  0.0000000
## 5816  0.0000000
## 5817  0.0000000
## 5818  0.0000000
## 5819  0.0000000
## 5820  0.0000000
## 5821  0.0000000
## 5822  0.0000000
## 5823  0.0000000
## 5824  0.0000000
## 5825  0.6931472
## 5826  1.0986123
## 5827  0.0000000
## 5828  0.6931472
## 5829  0.0000000
## 5830  0.0000000
## 5831  0.0000000
## 5832  0.6931472
## 5833  0.0000000
## 5834  0.0000000
## 5835  0.6931472
## 5836  0.0000000
## 5837  0.0000000
## 5838  0.0000000
## 5839  0.0000000
## 5840  0.0000000
## 5841  0.0000000
## 5842  0.0000000
## 5843  0.0000000
## 5844  0.6931472
## 5845  2.7080502
## 5846  0.0000000
## 5847  0.6931472
## 5848  0.0000000
## 5849  0.6931472
## 5850  0.6931472
## 5851  0.0000000
## 5852  0.0000000
## 5853  0.6931472
## 5854  0.0000000
## 5855  0.0000000
## 5856  0.0000000
## 5857  0.0000000
## 5858  0.0000000
## 5859  0.0000000
## 5860  0.6931472
## 5861  0.0000000
## 5862  0.0000000
## 5863  0.0000000
## 5864  0.0000000
## 5865  0.0000000
## 5866  0.0000000
## 5867  0.0000000
## 5868  0.0000000
## 5869  0.6931472
## 5870  0.0000000
## 5871  0.0000000
## 5872  1.3862944
## 5873  0.0000000
## 5874  0.0000000
## 5875  0.0000000
## 5876  0.0000000
## 5877  0.0000000
## 5878  0.0000000
## 5879  0.0000000
## 5880  1.9459101
## 5881  0.0000000
## 5882  0.0000000
## 5883  0.6931472
## 5884  0.0000000
## 5885  0.0000000
## 5886  0.0000000
## 5887  0.0000000
## 5888  0.0000000
## 5889  0.0000000
## 5890  0.0000000
## 5891  0.0000000
## 5892  0.0000000
## 5893  0.0000000
## 5894  0.6931472
## 5895  0.0000000
## 5896  0.0000000
## 5897  0.0000000
## 5898  0.0000000
## 5899  0.0000000
## 5900  0.0000000
## 5901  0.0000000
## 5902  1.0986123
## 5903  1.0986123
## 5904  0.0000000
## 5905  0.0000000
## 5906  0.0000000
## 5907  0.0000000
## 5908  0.0000000
## 5909  0.0000000
## 5910  0.0000000
## 5911  0.0000000
## 5912  0.0000000
## 5913  0.0000000
## 5914  2.1972246
## 5915  0.0000000
## 5916  1.0986123
## 5917  3.0445224
## 5918  0.0000000
## 5919  0.0000000
## 5920  0.0000000
## 5921  0.0000000
## 5922  0.6931472
## 5923  0.0000000
## 5924  0.0000000
## 5925  0.6931472
## 5926  0.0000000
## 5927  0.0000000
## 5928  2.0794415
## 5929  0.0000000
## 5930  2.0794415
## 5931  2.0794415
## 5932  1.3862944
## 5933  0.0000000
## 5934  0.0000000
## 5935  0.0000000
## 5936  0.6931472
## 5937  0.0000000
## 5938  0.6931472
## 5939  0.0000000
## 5940  0.6931472
## 5941  0.0000000
## 5942  0.0000000
## 5943  0.0000000
## 5944  0.0000000
## 5945  0.0000000
## 5946  0.0000000
## 5947  0.0000000
## 5948  0.0000000
## 5949  0.0000000
## 5950  0.0000000
## 5951  0.0000000
## 5952  0.0000000
## 5953  0.0000000
## 5954  0.0000000
## 5955  0.0000000
## 5956  0.0000000
## 5957  0.6931472
## 5958  1.3862944
## 5959  0.0000000
## 5960  0.0000000
## 5961  0.0000000
## 5962  0.0000000
## 5963  0.0000000
## 5964  0.0000000
## 5965  0.0000000
## 5966  0.0000000
## 5967  0.0000000
## 5968  0.0000000
## 5969  1.0986123
## 5970  0.0000000
## 5971  0.0000000
## 5972  0.0000000
## 5973  0.0000000
## 5974  0.6931472
## 5975  0.0000000
## 5976  3.9512437
## 5977  0.0000000
## 5978  1.3862944
## 5979  0.0000000
## 5980  0.0000000
## 5981  1.3862944
## 5982  0.0000000
## 5983  1.6094379
## 5984  0.0000000
## 5985  0.0000000
## 5986  0.0000000
## 5987  3.2580965
## 5988  0.0000000
## 5989  0.0000000
## 5990  0.0000000
## 5991  0.0000000
## 5992  0.0000000
## 5993  0.6931472
## 5994  0.0000000
## 5995  0.0000000
## 5996  1.6094379
## 5997  1.6094379
## 5998  0.0000000
## 5999  1.6094379
## 6000  0.0000000
## 6001  0.0000000
## 6002  0.0000000
## 6003  1.6094379
## 6004  0.0000000
## 6005  1.0986123
## 6006  1.3862944
## 6007  0.0000000
## 6008  0.0000000
## 6009  1.0986123
## 6010  0.0000000
## 6011  0.0000000
## 6012  0.6931472
## 6013  0.0000000
## 6014  0.0000000
## 6015  0.0000000
## 6016  0.0000000
## 6017  0.0000000
## 6018  2.7080502
## 6019  0.0000000
## 6020  0.0000000
## 6021  0.0000000
## 6022  1.6094379
## 6023  0.6931472
## 6024  0.0000000
## 6025  0.0000000
## 6026  0.0000000
## 6027  0.0000000
## 6028  0.0000000
## 6029  0.0000000
## 6030  0.0000000
## 6031  0.0000000
## 6032  0.0000000
## 6033  0.0000000
## 6034  0.0000000
## 6035  0.0000000
## 6036  0.0000000
## 6037  0.0000000
## 6038  0.0000000
## 6039  0.0000000
## 6040  0.0000000
## 6041  0.0000000
## 6042  0.0000000
## 6043  0.0000000
## 6044  0.0000000
## 6045  0.0000000
## 6046  0.0000000
## 6047  0.0000000
## 6048  0.0000000
## 6049  0.0000000
## 6050  0.0000000
## 6051  0.0000000
## 6052  0.0000000
## 6053  0.6931472
## 6054  0.6931472
## 6055  0.0000000
## 6056  2.1972246
## 6057  0.0000000
## 6058  1.3862944
## 6059  2.7080502
## 6060  0.6931472
## 6061  0.0000000
## 6062  0.0000000
## 6063  0.0000000
## 6064  3.9512437
## 6065  0.0000000
## 6066  0.0000000
## 6067  0.6931472
## 6068  0.0000000
## 6069  1.0986123
## 6070  0.0000000
## 6071  1.0986123
## 6072  0.0000000
## 6073  0.0000000
## 6074  0.0000000
## 6075  0.0000000
## 6076  0.0000000
## 6077  0.0000000
## 6078  0.0000000
## 6079  0.0000000
## 6080  0.0000000
## 6081  0.0000000
## 6082  0.0000000
## 6083  0.0000000
## 6084  0.0000000
## 6085  0.6931472
## 6086  0.0000000
## 6087  0.6931472
## 6088  1.0986123
## 6089  0.0000000
## 6090  0.0000000
## 6091  1.6094379
## 6092  0.6931472
## 6093  0.0000000
## 6094  0.6931472
## 6095  0.6931472
## 6096  1.0986123
## 6097  0.0000000
## 6098  0.0000000
## 6099  0.0000000
## 6100  0.0000000
## 6101  0.0000000
## 6102  0.0000000
## 6103  0.0000000
## 6104  0.0000000
## 6105  0.6931472
## 6106  0.0000000
## 6107  0.0000000
## 6108  0.6931472
## 6109  0.0000000
## 6110  0.0000000
## 6111  0.0000000
## 6112  0.6931472
## 6113  0.6931472
## 6114  0.0000000
## 6115  0.0000000
## 6116  0.6931472
## 6117  1.0986123
## 6118  0.0000000
## 6119  0.0000000
## 6120  1.0986123
## 6121  0.0000000
## 6122  1.0986123
## 6123  0.0000000
## 6124  0.0000000
## 6125  0.0000000
## 6126  3.5263605
## 6127  0.0000000
## 6128  3.5263605
## 6129  3.5263605
## 6130  0.0000000
## 6131  0.0000000
## 6132  0.0000000
## 6133  0.6931472
## 6134  0.0000000
## 6135  0.0000000
## 6136  0.0000000
## 6137  0.0000000
## 6138  2.7080502
## 6139  0.0000000
## 6140  1.0986123
## 6141  0.0000000
## 6142  0.0000000
## 6143  0.6931472
## 6144  1.0986123
## 6145  0.0000000
## 6146  1.3862944
## 6147  3.5263605
## 6148  0.0000000
## 6149  0.6931472
## 6150  0.0000000
## 6151  0.0000000
## 6152  0.6931472
## 6153  1.9459101
## 6154  0.0000000
## 6155  0.0000000
## 6156  0.0000000
## 6157  0.0000000
## 6158  0.6931472
## 6159  0.0000000
## 6160  0.0000000
## 6161  2.0794415
## 6162  0.0000000
## 6163  1.0986123
## 6164  0.0000000
## 6165  0.0000000
## 6166  0.0000000
## 6167  0.0000000
## 6168  1.6094379
## 6169  0.6931472
## 6170  0.0000000
## 6171  0.0000000
## 6172  1.9459101
## 6173  0.6931472
## 6174  1.0986123
## 6175  0.6931472
## 6176  0.0000000
## 6177  0.0000000
## 6178  0.0000000
## 6179  0.0000000
## 6180  1.3862944
## 6181  1.0986123
## 6182  0.0000000
## 6183  2.9444390
## 6184  2.5649494
## 6185  2.5649494
## 6186  0.0000000
## 6187  0.6931472
## 6188  0.0000000
## 6189  0.0000000
## 6190  0.6931472
## 6191  0.0000000
## 6192  1.6094379
## 6193  0.6931472
## 6194  0.6931472
## 6195  0.0000000
## 6196  1.6094379
## 6197  0.0000000
## 6198  0.0000000
## 6199  0.0000000
## 6200  0.0000000
## 6201  0.6931472
## 6202  0.0000000
## 6203  0.0000000
## 6204  0.0000000
## 6205  0.0000000
## 6206  1.0986123
## 6207  0.6931472
## 6208  0.0000000
## 6209  0.0000000
## 6210  0.0000000
## 6211  0.6931472
## 6212  1.0986123
## 6213  0.0000000
## 6214  0.0000000
## 6215  0.0000000
## 6216  0.0000000
## 6217  0.0000000
## 6218  0.0000000
## 6219  0.0000000
## 6220  0.0000000
## 6221  0.0000000
## 6222  0.6931472
## 6223  0.6931472
## 6224  0.6931472
## 6225  0.0000000
## 6226  0.0000000
## 6227  0.0000000
## 6228  0.0000000
## 6229  0.0000000
## 6230  0.0000000
## 6231  0.0000000
## 6232  0.0000000
## 6233  0.0000000
## 6234  0.0000000
## 6235  0.0000000
## 6236  0.0000000
## 6237  0.0000000
## 6238  1.0986123
## 6239  0.0000000
## 6240  2.0794415
## 6241  0.0000000
## 6242  0.0000000
## 6243  0.6931472
## 6244  0.0000000
## 6245  0.0000000
## 6246  0.0000000
## 6247  1.0986123
## 6248  0.6931472
## 6249  3.5263605
## 6250  3.5263605
## 6251  0.0000000
## 6252  0.0000000
## 6253  0.0000000
## 6254  0.6931472
## 6255  0.0000000
## 6256  0.6931472
## 6257  1.0986123
## 6258  0.0000000
## 6259  0.0000000
## 6260  1.3862944
## 6261  0.0000000
## 6262  0.0000000
## 6263  1.0986123
## 6264  0.6931472
## 6265  0.0000000
## 6266  0.0000000
## 6267  0.0000000
## 6268  0.0000000
## 6269  0.0000000
## 6270  3.5263605
## 6271  0.6931472
## 6272  0.0000000
## 6273  1.3862944
## 6274  0.0000000
## 6275  0.0000000
## 6276  0.0000000
## 6277  0.6931472
## 6278  0.0000000
## 6279  0.0000000
## 6280  0.0000000
## 6281  1.0986123
## 6282  0.0000000
## 6283  0.0000000
## 6284  0.0000000
## 6285  1.0986123
## 6286  0.0000000
## 6287  0.0000000
## 6288  0.0000000
## 6289  0.0000000
## 6290  3.5263605
## 6291  0.0000000
## 6292  0.0000000
## 6293  2.7080502
## 6294  0.0000000
## 6295  0.0000000
## 6296  0.0000000
## 6297  0.6931472
## 6298  0.0000000
## 6299  0.0000000
## 6300  0.0000000
## 6301  0.0000000
## 6302  0.0000000
## 6303  0.0000000
## 6304  0.6931472
## 6305  0.0000000
## 6306  0.6931472
## 6307  0.0000000
## 6308  0.0000000
## 6309  0.0000000
## 6310  0.0000000
## 6311  1.6094379
## 6312  0.0000000
## 6313  0.6931472
## 6314  0.0000000
## 6315  0.0000000
## 6316  1.6094379
## 6317  0.0000000
## 6318  0.0000000
## 6319  0.0000000
## 6320  0.0000000
## 6321  0.0000000
## 6322  0.0000000
## 6323  0.0000000
## 6324  0.0000000
## 6325  0.0000000
## 6326  0.0000000
## 6327  0.6931472
## 6328  0.0000000
## 6329  0.0000000
## 6330  0.0000000
## 6331  0.0000000
## 6332  0.0000000
## 6333  0.0000000
## 6334  0.0000000
## 6335  0.0000000
## 6336  1.3862944
## 6337  1.3862944
## 6338  0.0000000
## 6339  0.0000000
## 6340  0.6931472
## 6341  0.0000000
## 6342  0.0000000
## 6343  0.0000000
## 6344  0.0000000
## 6345  0.0000000
## 6346  0.0000000
## 6347  0.0000000
## 6348  0.0000000
## 6349  3.7612001
## 6350  0.6931472
## 6351  0.0000000
## 6352  0.6931472
## 6353  1.0986123
## 6354  1.0986123
## 6355  0.0000000
## 6356  0.6931472
## 6357  1.0986123
## 6358  0.0000000
## 6359  0.6931472
## 6360  0.0000000
## 6361  2.7080502
## 6362  0.0000000
## 6363  1.3862944
## 6364  0.0000000
## 6365  0.0000000
## 6366  0.0000000
## 6367  0.0000000
## 6368  0.0000000
## 6369  0.0000000
## 6370  0.0000000
## 6371  0.0000000
## 6372  0.0000000
## 6373  0.0000000
## 6374  0.0000000
## 6375  0.0000000
## 6376  0.6931472
## 6377  0.0000000
## 6378  0.6931472
## 6379  0.6931472
## 6380  3.6635616
## 6381  1.3862944
## 6382  0.0000000
## 6383  0.0000000
## 6384  0.6931472
## 6385  0.0000000
## 6386  0.0000000
## 6387  0.6931472
## 6388  0.0000000
## 6389  0.6931472
## 6390  0.0000000
## 6391  0.0000000
## 6392  0.0000000
## 6393  1.6094379
## 6394  1.6094379
## 6395  0.0000000
## 6396  0.0000000
## 6397  0.0000000
## 6398  3.6635616
## 6399  0.0000000
## 6400  0.0000000
## 6401  0.0000000
## 6402  1.0986123
## 6403  0.0000000
## 6404  0.6931472
## 6405  0.0000000
## 6406  0.6931472
## 6407  0.0000000
## 6408  0.6931472
## 6409  0.0000000
## 6410  1.0986123
## 6411  0.6931472
## 6412  0.0000000
## 6413  0.0000000
## 6414  0.0000000
## 6415  0.0000000
## 6416  0.0000000
## 6417  3.9512437
## 6418  0.0000000
## 6419  0.6931472
## 6420  0.0000000
## 6421  0.6931472
## 6422  0.0000000
## 6423  0.0000000
## 6424  0.0000000
## 6425  0.0000000
## 6426  0.0000000
## 6427  1.0986123
## 6428  1.3862944
## 6429  0.0000000
## 6430  0.0000000
## 6431  0.0000000
## 6432  0.0000000
## 6433  0.0000000
## 6434  1.6094379
## 6435  0.0000000
## 6436  0.6931472
## 6437  0.6931472
## 6438  0.0000000
## 6439  1.3862944
## 6440  0.0000000
## 6441  0.0000000
## 6442  3.9512437
## 6443  0.0000000
## 6444  0.0000000
## 6445  1.6094379
## 6446  0.0000000
## 6447  0.0000000
## 6448  0.0000000
## 6449  0.0000000
## 6450  0.0000000
## 6451  3.9512437
## 6452  0.0000000
## 6453  0.0000000
## 6454  0.0000000
## 6455  0.0000000
## 6456  0.6931472
## 6457  0.6931472
## 6458  0.0000000
## 6459  1.6094379
## 6460  0.6931472
## 6461  0.6931472
## 6462  0.0000000
## 6463  0.0000000
## 6464  0.0000000
## 6465  2.0794415
## 6466  0.0000000
## 6467  0.0000000
## 6468  0.0000000
## 6469  0.6931472
## 6470  0.6931472
## 6471  0.0000000
## 6472  2.7080502
## 6473  0.0000000
## 6474  0.0000000
## 6475  1.0986123
## 6476  1.3862944
## 6477  3.6635616
## 6478  0.0000000
## 6479  0.0000000
## 6480  0.0000000
## 6481  0.6931472
## 6482  0.0000000
## 6483  0.0000000
## 6484  0.0000000
## 6485  0.6931472
## 6486  0.0000000
## 6487  0.0000000
## 6488  0.0000000
## 6489  0.0000000
## 6490  0.0000000
## 6491  0.0000000
## 6492  0.0000000
## 6493  0.0000000
## 6494  0.0000000
## 6495  0.0000000
## 6496  3.7612001
## 6497  0.0000000
## 6498  0.0000000
## 6499  3.7612001
## 6500  0.0000000
## 6501  0.0000000
## 6502  0.0000000
## 6503  0.0000000
## 6504  0.0000000
## 6505  0.0000000
## 6506  3.6635616
## 6507  0.0000000
## 6508  0.6931472
## 6509  0.6931472
## 6510  0.0000000
## 6511  0.0000000
## 6512  0.0000000
## 6513  0.0000000
## 6514  0.0000000
## 6515  0.0000000
## 6516  0.0000000
## 6517  0.6931472
## 6518  0.6931472
## 6519  0.6931472
## 6520  0.0000000
## 6521  3.5263605
## 6522  0.0000000
## 6523  0.6931472
## 6524  0.0000000
## 6525  0.0000000
## 6526  0.0000000
## 6527  3.9512437
## 6528  2.0794415
## 6529  3.5263605
## 6530  0.0000000
## 6531  0.0000000
## 6532  0.0000000
## 6533  0.0000000
## 6534  1.7917595
## 6535  0.0000000
## 6536  0.0000000
## 6537  2.7080502
## 6538  1.0986123
## 6539  0.0000000
## 6540  0.0000000
## 6541  0.6931472
## 6542  0.0000000
## 6543  0.0000000
## 6544  1.0986123
## 6545  0.6931472
## 6546  0.0000000
## 6547  3.0445224
## 6548  1.0986123
## 6549  0.0000000
## 6550  3.6635616
## 6551  0.0000000
## 6552  0.0000000
## 6553  0.0000000
## 6554  0.0000000
## 6555  0.0000000
## 6556  3.6635616
## 6557  0.0000000
## 6558  0.0000000
## 6559  0.0000000
## 6560  2.0794415
## 6561  0.0000000
## 6562  0.6931472
## 6563  0.0000000
## 6564  0.0000000
## 6565  0.0000000
## 6566  0.6931472
## 6567  0.6931472
## 6568  0.0000000
## 6569  0.0000000
## 6570  0.0000000
## 6571  0.0000000
## 6572  3.7612001
## 6573  3.7612001
## 6574  1.0986123
## 6575  1.0986123
## 6576  0.0000000
## 6577  1.0986123
## 6578  0.6931472
## 6579  1.0986123
## 6580  0.0000000
## 6581  0.0000000
## 6582  0.0000000
## 6583  0.0000000
## 6584  0.0000000
## 6585  0.6931472
## 6586  0.0000000
## 6587  0.0000000
## 6588  0.0000000
## 6589  0.0000000
## 6590  0.0000000
## 6591  0.0000000
## 6592  1.0986123
## 6593  0.0000000
## 6594  0.0000000
## 6595  0.6931472
## 6596  0.0000000
## 6597  0.0000000
## 6598  0.0000000
## 6599  0.0000000
## 6600  0.0000000
## 6601  0.0000000
## 6602  0.6931472
## 6603  0.0000000
## 6604  0.0000000
## 6605  0.0000000
## 6606  0.0000000
## 6607  1.0986123
## 6608  1.3862944
## 6609  1.0986123
## 6610  0.0000000
## 6611  3.5263605
## 6612  0.0000000
## 6613  0.6931472
## 6614  0.0000000
## 6615  0.0000000
## 6616  0.0000000
## 6617  0.0000000
## 6618  0.0000000
## 6619  0.6931472
## 6620  0.0000000
## 6621  0.0000000
## 6622  0.0000000
## 6623  0.0000000
## 6624  0.0000000
## 6625  1.6094379
## 6626  0.0000000
## 6627  1.3862944
## 6628  0.0000000
## 6629  0.0000000
## 6630  0.0000000
## 6631  0.0000000
## 6632  0.0000000
## 6633  0.0000000
## 6634  0.0000000
## 6635  2.1972246
## 6636  1.3862944
## 6637  0.6931472
## 6638  0.0000000
## 6639  0.0000000
## 6640  0.0000000
## 6641  0.0000000
## 6642  3.7612001
## 6643  0.0000000
## 6644  3.7612001
## 6645  0.0000000
## 6646  0.0000000
## 6647  0.0000000
## 6648  0.0000000
## 6649  0.0000000
## 6650  0.0000000
## 6651  0.0000000
## 6652  0.6931472
## 6653  0.0000000
## 6654  0.0000000
## 6655  0.0000000
## 6656  0.0000000
## 6657  0.0000000
## 6658  0.0000000
## 6659  0.0000000
## 6660  0.0000000
## 6661  0.6931472
## 6662  0.6931472
## 6663  0.6931472
## 6664  0.0000000
## 6665  0.0000000
## 6666  0.0000000
## 6667  2.3978953
## 6668  0.6931472
## 6669  0.0000000
## 6670  0.0000000
## 6671  0.0000000
## 6672  0.0000000
## 6673  0.0000000
## 6674  0.6931472
## 6675  0.6931472
## 6676  1.3862944
## 6677  0.0000000
## 6678  3.7612001
## 6679  0.0000000
## 6680  0.6931472
## 6681  3.9512437
## 6682  0.0000000
## 6683  0.6931472
## 6684  0.6931472
## 6685  1.0986123
## 6686  0.0000000
## 6687  0.0000000
## 6688  0.0000000
## 6689  1.3862944
## 6690  2.3978953
## 6691  0.0000000
## 6692  1.3862944
## 6693  0.0000000
## 6694  0.0000000
## 6695  0.6931472
## 6696  0.0000000
## 6697  0.6931472
## 6698  0.6931472
## 6699  0.0000000
## 6700  0.0000000
## 6701  0.0000000
## 6702  0.0000000
## 6703  0.0000000
## 6704  0.0000000
## 6705  0.0000000
## 6706  0.6931472
## 6707  0.0000000
## 6708  0.6931472
## 6709  0.0000000
## 6710  0.0000000
## 6711  0.0000000
## 6712  0.0000000
## 6713  0.0000000
## 6714  0.0000000
## 6715  1.6094379
## 6716  0.0000000
## 6717  0.0000000
## 6718  0.0000000
## 6719  0.0000000
## 6720  0.0000000
## 6721  0.0000000
## 6722  0.0000000
## 6723  0.0000000
## 6724  0.0000000
## 6725  0.0000000
## 6726  0.0000000
## 6727  3.3672958
## 6728  0.0000000
## 6729  0.0000000
## 6730  0.0000000
## 6731  3.6635616
## 6732  0.0000000
## 6733  1.0986123
## 6734  0.0000000
## 6735  3.0445224
## 6736  3.9512437
## 6737  3.3672958
## 6738  0.0000000
## 6739  0.0000000
## 6740  0.0000000
## 6741  0.0000000
## 6742  0.0000000
## 6743  0.0000000
## 6744  0.0000000
## 6745  0.0000000
## 6746  0.0000000
## 6747  0.0000000
## 6748  0.0000000
## 6749  0.0000000
## 6750  0.0000000
## 6751  1.0986123
## 6752  0.0000000
## 6753  0.0000000
## 6754  0.0000000
## 6755  0.6931472
## 6756  0.0000000
## 6757  1.0986123
## 6758  0.0000000
## 6759  0.0000000
## 6760  0.6931472
## 6761  0.6931472
## 6762  0.0000000
## 6763  3.9512437
## 6764  0.0000000
## 6765  0.0000000
## 6766  0.0000000
## 6767  0.0000000
## 6768  0.0000000
## 6769  0.0000000
## 6770  0.6931472
## 6771  1.0986123
## 6772  0.0000000
## 6773  3.3672958
## 6774  0.0000000
## 6775  0.6931472
## 6776  1.0986123
## 6777  2.1972246
## 6778  0.0000000
## 6779  0.0000000
## 6780  2.0794415
## 6781  0.0000000
## 6782  0.0000000
## 6783  0.0000000
## 6784  0.0000000
## 6785  0.0000000
## 6786  0.6931472
## 6787  0.6931472
## 6788  0.0000000
## 6789  0.0000000
## 6790  0.0000000
## 6791  0.0000000
## 6792  1.9459101
## 6793  0.6931472
## 6794  0.6931472
## 6795  0.0000000
## 6796  0.0000000
## 6797  0.0000000
## 6798  0.0000000
## 6799  0.0000000
## 6800  1.0986123
## 6801  0.0000000
## 6802  0.0000000
## 6803  0.0000000
## 6804  0.6931472
## 6805  1.0986123
## 6806  1.3862944
## 6807  0.6931472
## 6808  0.0000000
## 6809  0.6931472
## 6810  1.3862944
## 6811  0.0000000
## 6812  0.0000000
## 6813  0.6931472
## 6814  0.6931472
## 6815  0.0000000
## 6816  0.6931472
## 6817  1.7917595
## 6818  1.7917595
## 6819  1.7917595
## 6820  0.0000000
## 6821  0.0000000
## 6822  0.0000000
## 6823  0.0000000
## 6824  0.0000000
## 6825  0.0000000
## 6826  0.0000000
## 6827  0.0000000
## 6828  1.3862944
## 6829  0.6931472
## 6830  0.0000000
## 6831  3.9512437
## 6832  0.0000000
## 6833  0.0000000
## 6834  1.3862944
## 6835  0.0000000
## 6836  0.0000000
## 6837  0.0000000
## 6838  0.0000000
## 6839  1.0986123
## 6840  0.0000000
## 6841  0.0000000
## 6842  1.6094379
## 6843  1.6094379
## 6844  1.6094379
## 6845  1.6094379
## 6846  1.6094379
## 6847  0.0000000
## 6848  0.0000000
## 6849  0.0000000
## 6850  0.0000000
## 6851  1.0986123
## 6852  0.0000000
## 6853  0.0000000
## 6854  0.6931472
## 6855  3.3672958
## 6856  3.0445224
## 6857  0.0000000
## 6858  0.0000000
## 6859  0.0000000
## 6860  1.0986123
## 6861  0.0000000
## 6862  0.0000000
## 6863  0.0000000
## 6864  1.0986123
## 6865  0.6931472
## 6866  0.0000000
## 6867  1.0986123
## 6868  0.0000000
## 6869  0.0000000
## 6870  1.0986123
## 6871  0.6931472
## 6872  2.3978953
## 6873  2.3978953
## 6874  2.3978953
## 6875  2.3978953
## 6876  2.3978953
## 6877  0.6931472
## 6878  0.0000000
## 6879  0.6931472
## 6880  1.0986123
## 6881  0.0000000
## 6882  0.0000000
## 6883  0.0000000
## 6884  1.0986123
## 6885  1.0986123
## 6886  0.6931472
## 6887  0.6931472
## 6888  1.3862944
## 6889  0.0000000
## 6890  0.0000000
## 6891  0.0000000
## 6892  0.0000000
## 6893  0.6931472
## 6894  0.6931472
## 6895  0.0000000
## 6896  0.0000000
## 6897  0.6931472
## 6898  0.0000000
## 6899  0.0000000
## 6900  0.0000000
## 6901  0.0000000
## 6902  0.0000000
## 6903  2.3978953
## 6904  0.0000000
## 6905  0.0000000
## 6906  0.0000000
## 6907  0.0000000
## 6908  0.0000000
## 6909  0.0000000
## 6910  1.3862944
## 6911  0.0000000
## 6912  0.0000000
## 6913  1.0986123
## 6914  0.0000000
## 6915  0.0000000
## 6916  0.0000000
## 6917  0.6931472
## 6918  0.0000000
## 6919  0.0000000
## 6920  0.6931472
## 6921  0.0000000
## 6922  0.0000000
## 6923  0.0000000
## 6924  0.0000000
## 6925  0.0000000
## 6926  0.0000000
## 6927  0.0000000
## 6928  1.3862944
## 6929  0.0000000
## 6930  0.0000000
## 6931  0.6931472
## 6932  0.0000000
## 6933  1.9459101
## 6934  0.0000000
## 6935  0.0000000
## 6936  0.0000000
## 6937  0.6931472
## 6938  0.0000000
## 6939  1.3862944
## 6940  0.0000000
## 6941  0.0000000
## 6942  1.3862944
## 6943  1.0986123
## 6944  0.0000000
## 6945  0.0000000
## 6946  0.0000000
## 6947  0.0000000
## 6948  0.0000000
## 6949  0.6931472
## 6950  0.0000000
## 6951  1.0986123
## 6952  0.0000000
## 6953  0.6931472
## 6954  0.0000000
## 6955  0.0000000
## 6956  0.0000000
## 6957  0.0000000
## 6958  0.0000000
## 6959  1.0986123
## 6960  0.0000000
## 6961  0.6931472
## 6962  3.5263605
## 6963  0.6931472
## 6964  0.0000000
## 6965  0.0000000
## 6966  0.0000000
## 6967  0.0000000
## 6968  0.6931472
## 6969  0.0000000
## 6970  0.0000000
## 6971  0.0000000
## 6972  0.0000000
## 6973  0.0000000
## 6974  0.0000000
## 6975  3.5263605
## 6976  0.0000000
## 6977  0.0000000
## 6978  0.0000000
## 6979  0.0000000
## 6980  0.0000000
## 6981  0.0000000
## 6982  0.0000000
## 6983  0.0000000
## 6984  1.0986123
## 6985  0.0000000
## 6986  1.7917595
## 6987  3.6635616
## 6988  0.0000000
## 6989  0.6931472
## 6990  0.0000000
## 6991  0.0000000
## 6992  0.0000000
## 6993  0.0000000
## 6994  0.0000000
## 6995  1.0986123
## 6996  0.0000000
## 6997  0.0000000
## 6998  0.0000000
## 6999  0.0000000
## 7000  0.0000000
## 7001  0.0000000
## 7002  0.0000000
## 7003  0.0000000
## 7004  0.0000000
## 7005  0.6931472
## 7006  0.0000000
## 7007  0.6931472
## 7008  1.7917595
## 7009  0.0000000
## 7010  0.0000000
## 7011  0.0000000
## 7012  0.0000000
## 7013  0.0000000
## 7014  0.0000000
## 7015  1.3862944
## 7016  0.0000000
## 7017  0.0000000
## 7018  0.0000000
## 7019  2.8903718
## 7020  0.0000000
## 7021  0.0000000
## 7022  0.0000000
## 7023  0.0000000
## 7024  0.6931472
## 7025  0.6931472
## 7026  1.6094379
## 7027  0.0000000
## 7028  0.0000000
## 7029  0.0000000
## 7030  0.0000000
## 7031  1.3862944
## 7032  0.0000000
## 7033  0.0000000
## 7034  0.0000000
## 7035  0.0000000
## 7036  0.0000000
## 7037  0.0000000
## 7038  0.0000000
## 7039  0.0000000
## 7040  3.9512437
## 7041  0.0000000
## 7042  0.0000000
## 7043  0.0000000
## 7044  0.0000000
## 7045  0.0000000
## 7046  0.0000000
## 7047  0.0000000
## 7048  1.0986123
## 7049  0.0000000
## 7050  0.0000000
## 7051  0.0000000
## 7052  0.0000000
## 7053  0.0000000
## 7054  1.0986123
## 7055  0.0000000
## 7056  0.0000000
## 7057  0.0000000
## 7058  0.0000000
## 7059  0.0000000
## 7060  2.1972246
## 7061  0.0000000
## 7062  0.6931472
## 7063  0.0000000
## 7064  0.0000000
## 7065  1.0986123
## 7066  0.0000000
## 7067  1.3862944
## 7068  0.0000000
## 7069  0.0000000
## 7070  0.0000000
## 7071  0.0000000
## 7072  0.0000000
## 7073  0.0000000
## 7074  0.0000000
## 7075  0.0000000
## 7076  0.0000000
## 7077  1.3862944
## 7078  0.0000000
## 7079  0.0000000
## 7080  0.0000000
## 7081  0.0000000
## 7082  0.0000000
## 7083  0.0000000
## 7084  0.0000000
## 7085  0.0000000
## 7086  0.6931472
## 7087  0.0000000
## 7088  0.0000000
## 7089  0.0000000
## 7090  0.6931472
## 7091  0.0000000
## 7092  1.0986123
## 7093  0.0000000
## 7094  3.9512437
## 7095  0.6931472
## 7096  0.0000000
## 7097  0.0000000
## 7098  0.0000000
## 7099  0.0000000
## 7100  0.0000000
## 7101  0.6931472
## 7102  0.0000000
## 7103  0.0000000
## 7104  0.0000000
## 7105  0.0000000
## 7106  0.0000000
## 7107  0.0000000
## 7108  0.0000000
## 7109  0.6931472
## 7110  0.0000000
## 7111  0.0000000
## 7112  0.6931472
## 7113  2.1972246
## 7114  0.0000000
## 7115  0.0000000
## 7116  0.6931472
## 7117  0.0000000
## 7118  0.0000000
## 7119  0.0000000
## 7120  0.0000000
## 7121  0.0000000
## 7122  1.3862944
## 7123  0.0000000
## 7124  0.0000000
## 7125  0.0000000
## 7126  1.3862944
## 7127  2.1972246
## 7128  0.0000000
## 7129  0.0000000
## 7130  0.0000000
## 7131  0.0000000
## 7132  0.0000000
## 7133  1.0986123
## 7134  0.6931472
## 7135  0.0000000
## 7136  0.0000000
## 7137  0.6931472
## 7138  0.0000000
## 7139  1.3862944
## 7140  0.6931472
## 7141  0.0000000
## 7142  0.0000000
## 7143  0.0000000
## 7144  0.0000000
## 7145  0.0000000
## 7146  0.0000000
## 7147  0.0000000
## 7148  0.6931472
## 7149  0.0000000
## 7150  0.0000000
## 7151  0.6931472
## 7152  0.0000000
## 7153  0.0000000
## 7154  1.6094379
## 7155  1.6094379
## 7156  1.6094379
## 7157  0.0000000
## 7158  0.0000000
## 7159  0.0000000
## 7160  0.0000000
## 7161  0.0000000
## 7162  0.0000000
## 7163  1.0986123
## 7164  1.3862944
## 7165  0.0000000
## 7166  0.0000000
## 7167  0.0000000
## 7168  0.0000000
## 7169  1.3862944
## 7170  0.6931472
## 7171  1.3862944
## 7172  0.0000000
## 7173  0.0000000
## 7174  0.0000000
## 7175  0.0000000
## 7176  0.6931472
## 7177  0.0000000
## 7178  0.6931472
## 7179  0.0000000
## 7180  0.0000000
## 7181  0.6931472
## 7182  0.0000000
## 7183  0.0000000
## 7184  0.0000000
## 7185  0.6931472
## 7186  0.6931472
## 7187  0.6931472
## 7188  0.6931472
## 7189  0.0000000
## 7190  0.6931472
## 7191  0.0000000
## 7192  0.0000000
## 7193  0.0000000
## 7194  0.0000000
## 7195  0.0000000
## 7196  0.0000000
## 7197  1.0986123
## 7198  2.1972246
## 7199  0.0000000
## 7200  0.0000000
## 7201  0.0000000
## 7202  0.0000000
## 7203  0.0000000
## 7204  0.0000000
## 7205  1.3862944
## 7206  0.0000000
## 7207  0.0000000
## 7208  0.6931472
## 7209  0.0000000
## 7210  0.0000000
## 7211  0.0000000
## 7212  0.0000000
## 7213  0.0000000
## 7214  0.0000000
## 7215  0.0000000
## 7216  0.0000000
## 7217  0.0000000
## 7218  0.0000000
## 7219  2.0794415
## 7220  2.0794415
## 7221  0.0000000
## 7222  0.0000000
## 7223  0.0000000
## 7224  0.0000000
## 7225  0.0000000
## 7226  0.0000000
## 7227  0.0000000
## 7228  3.2580965
## 7229  1.0986123
## 7230  0.0000000
## 7231  0.6931472
## 7232  0.0000000
## 7233  1.0986123
## 7234  1.0986123
## 7235  0.0000000
## 7236  0.6931472
## 7237  0.0000000
## 7238  0.0000000
## 7239  0.0000000
## 7240  0.6931472
## 7241  0.0000000
## 7242  0.0000000
## 7243  0.0000000
## 7244  1.6094379
## 7245  0.0000000
## 7246  0.0000000
## 7247  0.0000000
## 7248  0.0000000
## 7249  1.6094379
## 7250  0.6931472
## 7251  0.0000000
## 7252  0.6931472
## 7253  0.6931472
## 7254  0.0000000
## 7255  0.0000000
## 7256  0.6931472
## 7257  0.0000000
## 7258  0.0000000
## 7259  0.6931472
## 7260  0.0000000
## 7261  1.0986123
## 7262  0.0000000
## 7263  0.0000000
## 7264  1.0986123
## 7265  2.3978953
## 7266  0.0000000
## 7267  0.0000000
## 7268  0.0000000
## 7269  0.0000000
## 7270  0.0000000
## 7271  0.0000000
## 7272  1.7917595
## 7273  0.6931472
## 7274  0.0000000
## 7275  0.0000000
## 7276  0.0000000
## 7277  0.0000000
## 7278  0.0000000
## 7279  0.0000000
## 7280  0.0000000
## 7281  0.0000000
## 7282  0.0000000
## 7283  0.0000000
## 7284  0.0000000
## 7285  0.0000000
## 7286  1.7917595
## 7287  2.0794415
## 7288  0.0000000
## 7289  0.0000000
## 7290  0.0000000
## 7291  0.0000000
## 7292  0.0000000
## 7293  0.6931472
## 7294  0.0000000
## 7295  1.0986123
## 7296  0.6931472
## 7297  0.0000000
## 7298  0.0000000
## 7299  0.0000000
## 7300  0.0000000
## 7301  1.6094379
## 7302  0.0000000
## 7303  0.0000000
## 7304  2.0794415
## 7305  0.6931472
## 7306  0.0000000
## 7307  0.0000000
## 7308  0.6931472
## 7309  0.0000000
## 7310  0.0000000
## 7311  0.0000000
## 7312  0.0000000
## 7313  0.0000000
## 7314  0.0000000
## 7315  0.6931472
## 7316  0.0000000
## 7317  0.0000000
## 7318  2.1972246
## 7319  0.0000000
## 7320  0.0000000
## 7321  0.0000000
## 7322  0.6931472
## 7323  0.6931472
## 7324  0.0000000
## 7325  0.0000000
## 7326  0.0000000
## 7327  0.0000000
## 7328  0.0000000
## 7329  0.6931472
## 7330  0.0000000
## 7331  0.0000000
## 7332  0.0000000
## 7333  0.0000000
## 7334  1.0986123
## 7335  0.0000000
## 7336  0.0000000
## 7337  0.0000000
## 7338  0.0000000
## 7339  0.6931472
## 7340  0.0000000
## 7341  0.6931472
## 7342  0.0000000
## 7343  0.0000000
## 7344  0.0000000
## 7345  0.0000000
## 7346  0.0000000
## 7347  0.0000000
## 7348  0.0000000
## 7349  0.0000000
## 7350  0.6931472
## 7351  1.0986123
## 7352  0.0000000
## 7353  0.0000000
## 7354  0.0000000
## 7355  0.0000000
## 7356  0.0000000
## 7357  0.0000000
## 7358  0.0000000
## 7359  0.0000000
## 7360  0.0000000
## 7361  0.0000000
## 7362  2.5649494
## 7363  0.0000000
## 7364  1.0986123
## 7365  0.0000000
## 7366  0.6931472
## 7367  0.0000000
## 7368  0.0000000
## 7369  0.0000000
## 7370  0.0000000
## 7371  0.0000000
## 7372  0.0000000
## 7373  0.0000000
## 7374  0.0000000
## 7375  2.3025851
## 7376  0.0000000
## 7377  0.0000000
## 7378  0.0000000
## 7379  0.0000000
## 7380  0.0000000
## 7381  0.0000000
## 7382  0.0000000
## 7383  0.0000000
## 7384  0.0000000
## 7385  0.0000000
## 7386  1.3862944
## 7387  0.6931472
## 7388  0.0000000
## 7389  0.0000000
## 7390  0.0000000
## 7391  0.0000000
## 7392  0.0000000
## 7393  0.0000000
## 7394  0.0000000
## 7395  0.6931472
## 7396  1.6094379
## 7397  0.0000000
## 7398  1.6094379
## 7399  1.6094379
## 7400  0.0000000
## 7401  0.0000000
## 7402  0.6931472
## 7403  0.0000000
## 7404  0.0000000
## 7405  0.6931472
## 7406  0.0000000
## 7407  0.0000000
## 7408  0.0000000
## 7409  0.0000000
## 7410  0.0000000
## 7411  0.0000000
## 7412  0.6931472
## 7413  0.6931472
## 7414  0.6931472
## 7415  0.0000000
## 7416  0.0000000
## 7417  0.0000000
## 7418  0.0000000
## 7419  0.6931472
## 7420  0.0000000
## 7421  0.6931472
## 7422  0.0000000
## 7423  2.0794415
## 7424  0.0000000
## 7425  0.0000000
## 7426  0.0000000
## 7427  0.0000000
## 7428  0.0000000
## 7429  0.0000000
## 7430  2.6390573
## 7431  0.6931472
## 7432  0.0000000
## 7433  0.0000000
## 7434  0.0000000
## 7435  0.0000000
## 7436  2.0794415
## 7437  0.0000000
## 7438  0.0000000
## 7439  0.0000000
## 7440  0.0000000
## 7441  3.9512437
## 7442  0.0000000
## 7443  0.0000000
## 7444  0.0000000
## 7445  0.0000000
## 7446  0.0000000
## 7447  0.0000000
## 7448  0.6931472
## 7449  0.6931472
## 7450  0.0000000
## 7451  0.0000000
## 7452  0.6931472
## 7453  0.0000000
## 7454  0.0000000
## 7455  0.0000000
## 7456  1.0986123
## 7457  0.0000000
## 7458  0.0000000
## 7459  1.0986123
## 7460  0.0000000
## 7461  2.7080502
## 7462  0.0000000
## 7463  0.0000000
## 7464  0.0000000
## 7465  0.0000000
## 7466  0.0000000
## 7467  0.0000000
## 7468  0.0000000
## 7469  0.0000000
## 7470  0.6931472
## 7471  0.0000000
## 7472  0.0000000
## 7473  0.0000000
## 7474  1.0986123
## 7475  0.0000000
## 7476  0.0000000
## 7477  0.0000000
## 7478  0.0000000
## 7479  0.0000000
## 7480  0.0000000
## 7481  0.0000000
## 7482  0.0000000
## 7483  0.0000000
## 7484  0.0000000
## 7485  0.0000000
## 7486  0.0000000
## 7487  0.0000000
## 7488  0.0000000
## 7489  1.0986123
## 7490  0.0000000
## 7491  1.0986123
## 7492  0.0000000
## 7493  0.0000000
## 7494  0.6931472
## 7495  0.0000000
## 7496  0.0000000
## 7497  1.0986123
## 7498  2.0794415
## 7499  0.0000000
## 7500  0.0000000
## 7501  0.0000000
## 7502  0.0000000
## 7503  0.0000000
## 7504  1.3862944
## 7505  0.6931472
## 7506  0.0000000
## 7507  0.0000000
## 7508  2.3978953
## 7509  0.0000000
## 7510  0.0000000
## 7511  0.0000000
## 7512  0.0000000
## 7513  0.6931472
## 7514  1.0986123
## 7515  0.6931472
## 7516  0.0000000
## 7517  0.0000000
## 7518  0.6931472
## 7519  1.7917595
## 7520  1.0986123
## 7521  0.0000000
## 7522  0.0000000
## 7523  0.0000000
## 7524  0.0000000
## 7525  0.0000000
## 7526  1.6094379
## 7527  0.0000000
## 7528  0.0000000
## 7529  0.0000000
## 7530  0.0000000
## 7531  1.0986123
## 7532  0.0000000
## 7533  0.6931472
## 7534  0.0000000
## 7535  0.6931472
## 7536  0.0000000
## 7537  0.0000000
## 7538  0.0000000
## 7539  0.0000000
## 7540  0.0000000
## 7541  0.0000000
## 7542  0.0000000
## 7543  0.0000000
## 7544  1.6094379
## 7545  0.6931472
## 7546  0.0000000
## 7547  0.0000000
## 7548  1.0986123
## 7549  0.0000000
## 7550  0.6931472
## 7551  0.6931472
## 7552  0.0000000
## 7553  1.0986123
## 7554  1.0986123
## 7555  0.0000000
## 7556  1.0986123
## 7557  0.0000000
## 7558  0.0000000
## 7559  0.0000000
## 7560  0.6931472
## 7561  0.6931472
## 7562  0.0000000
## 7563  0.0000000
## 7564  1.7917595
## 7565  0.6931472
## 7566  0.0000000
## 7567  0.6931472
## 7568  0.0000000
## 7569  0.0000000
## 7570  0.0000000
## 7571  0.0000000
## 7572  0.0000000
## 7573  0.0000000
## 7574  0.0000000
## 7575  0.0000000
## 7576  0.0000000
## 7577  0.6931472
## 7578  0.0000000
## 7579  0.0000000
## 7580  0.0000000
## 7581  0.0000000
## 7582  0.6931472
## 7583  0.6931472
## 7584  0.0000000
## 7585  0.0000000
## 7586  0.0000000
## 7587  0.0000000
## 7588  0.0000000
## 7589  0.0000000
## 7590  0.0000000
## 7591  0.0000000
## 7592  0.0000000
## 7593  0.0000000
## 7594  0.6931472
## 7595  0.0000000
## 7596  0.0000000
## 7597  0.0000000
## 7598  1.6094379
## 7599  0.0000000
## 7600  2.0794415
## 7601  0.6931472
## 7602  0.0000000
## 7603  0.0000000
## 7604  0.0000000
## 7605  0.0000000
## 7606  0.0000000
## 7607  1.0986123
## 7608  0.0000000
## 7609  0.0000000
## 7610  0.0000000
## 7611  0.0000000
## 7612  0.0000000
## 7613  1.3862944
## 7614  0.0000000
## 7615  0.0000000
## 7616  1.6094379
## 7617  0.0000000
## 7618  0.6931472
## 7619  0.0000000
## 7620  1.0986123
## 7621  0.0000000
## 7622  1.3862944
## 7623  0.0000000
## 7624  0.0000000
## 7625  0.0000000
## 7626  0.0000000
## 7627  0.6931472
## 7628  0.6931472
## 7629  0.0000000
## 7630  0.0000000
## 7631  1.3862944
## 7632  0.0000000
## 7633  0.0000000
## 7634  0.0000000
## 7635  1.6094379
## 7636  0.6931472
## 7637  0.6931472
## 7638  0.0000000
## 7639  0.0000000
## 7640  0.0000000
## 7641  1.0986123
## 7642  0.0000000
## 7643  0.0000000
## 7644  0.0000000
## 7645  0.0000000
## 7646  0.0000000
## 7647  0.0000000
## 7648  0.0000000
## 7649  1.0986123
## 7650  0.0000000
## 7651  0.0000000
## 7652  0.0000000
## 7653  0.0000000
## 7654  0.0000000
## 7655  0.0000000
## 7656  0.0000000
## 7657  0.0000000
## 7658  0.0000000
## 7659  0.0000000
## 7660  0.0000000
## 7661  0.0000000
## 7662  0.0000000
## 7663  0.0000000
## 7664  0.0000000
## 7665  0.0000000
## 7666  0.6931472
## 7667  1.0986123
## 7668  0.0000000
## 7669  0.0000000
## 7670  0.0000000
## 7671  0.6931472
## 7672  0.0000000
## 7673  1.0986123
## 7674  0.0000000
## 7675  0.0000000
## 7676  0.0000000
## 7677  0.0000000
## 7678  0.0000000
## 7679  0.0000000
## 7680  0.0000000
## 7681  0.0000000
## 7682  0.6931472
## 7683  0.0000000
## 7684  0.0000000
## 7685  0.0000000
## 7686  3.7612001
## 7687  3.7612001
## 7688  0.0000000
## 7689  0.6931472
## 7690  0.0000000
## 7691  0.0000000
## 7692  0.6931472
## 7693  0.6931472
## 7694  0.0000000
## 7695  1.0986123
## 7696  0.0000000
## 7697  0.0000000
## 7698  0.6931472
## 7699  0.0000000
## 7700  0.6931472
## 7701  1.0986123
## 7702  0.0000000
## 7703  0.0000000
## 7704  0.0000000
## 7705  0.0000000
## 7706  0.0000000
## 7707  0.6931472
## 7708  0.0000000
## 7709  0.0000000
## 7710  1.0986123
## 7711  0.0000000
## 7712  0.6931472
## 7713  0.6931472
## 7714  1.0986123
## 7715  0.0000000
## 7716  0.0000000
## 7717  0.0000000
## 7718  0.0000000
## 7719  0.0000000
## 7720  0.0000000
## 7721  0.6931472
## 7722  0.6931472
## 7723  0.0000000
## 7724  0.0000000
## 7725  0.0000000
## 7726  0.6931472
## 7727  0.0000000
## 7728  0.0000000
## 7729  0.0000000
## 7730  0.0000000
## 7731  0.0000000
## 7732  0.0000000
## 7733  0.0000000
## 7734  0.0000000
## 7735  0.0000000
## 7736  0.0000000
## 7737  0.0000000
## 7738  0.0000000
## 7739  0.0000000
## 7740  0.0000000
## 7741  0.0000000
## 7742  0.0000000
## 7743  0.0000000
## 7744  0.0000000
## 7745  0.0000000
## 7746  2.0794415
## 7747  1.0986123
## 7748  1.0986123
## 7749  1.0986123
## 7750  1.0986123
## 7751  0.0000000
## 7752  1.0986123
## 7753  0.0000000
## 7754  1.0986123
## 7755  0.0000000
## 7756  0.0000000
## 7757  0.0000000
## 7758  2.0794415
## 7759  0.0000000
## 7760  0.6931472
## 7761  0.0000000
## 7762  0.0000000
## 7763  0.6931472
## 7764  0.0000000
## 7765  0.0000000
## 7766  0.6931472
## 7767  2.3978953
## 7768  2.3978953
## 7769  0.6931472
## 7770  0.0000000
## 7771  0.0000000
## 7772  0.0000000
## 7773  2.3978953
## 7774  1.3862944
## 7775  0.0000000
## 7776  0.0000000
## 7777  0.0000000
## 7778  0.6931472
## 7779  2.3978953
## 7780  2.3978953
## 7781  2.3978953
## 7782  2.3978953
## 7783  0.6931472
## 7784  2.3978953
## 7785  2.3978953
## 7786  2.3978953
## 7787  1.0986123
## 7788  1.3862944
## 7789  1.0986123
## 7790  0.0000000
## 7791  0.6931472
## 7792  0.6931472
## 7793  0.0000000
## 7794  0.0000000
## 7795  2.0794415
## 7796  0.0000000
## 7797  1.7917595
## 7798  0.0000000
## 7799  0.6931472
## 7800  2.0794415
## 7801  1.0986123
## 7802  1.0986123
## 7803  0.0000000
## 7804  0.0000000
## 7805  0.0000000
## 7806  0.0000000
## 7807  0.0000000
## 7808  2.0794415
## 7809  0.0000000
## 7810  0.6931472
## 7811  0.6931472
## 7812  0.0000000
## 7813  0.0000000
## 7814  0.0000000
## 7815  0.0000000
## 7816  0.0000000
## 7817  0.0000000
## 7818  0.6931472
## 7819  0.0000000
## 7820  0.0000000
## 7821  0.0000000
## 7822  0.0000000
## 7823  0.0000000
## 7824  0.0000000
## 7825  0.0000000
## 7826  0.0000000
## 7827  0.0000000
## 7828  0.0000000
## 7829  0.0000000
## 7830  0.0000000
## 7831  1.0986123
## 7832  0.0000000
## 7833  0.0000000
## 7834  0.0000000
## 7835  1.6094379
## 7836  0.0000000
## 7837  0.6931472
## 7838  0.0000000
## 7839  0.0000000
## 7840  1.3862944
## 7841  0.0000000
## 7842  0.0000000
## 7843  0.0000000
## 7844  0.0000000
## 7845  0.0000000
## 7846  1.9459101
## 7847  1.0986123
## 7848  0.6931472
## 7849  0.6931472
## 7850  0.0000000
## 7851  1.0986123
## 7852  0.0000000
## 7853  0.6931472
## 7854  0.0000000
## 7855  0.0000000
## 7856  0.0000000
## 7857  0.0000000
## 7858  0.0000000
## 7859  1.6094379
## 7860  0.0000000
## 7861  0.0000000
## 7862  0.0000000
## 7863  0.0000000
## 7864  0.0000000
## 7865  0.6931472
## 7866  0.0000000
## 7867  0.0000000
## 7868  0.0000000
## 7869  0.0000000
## 7870  0.0000000
## 7871  0.0000000
## 7872  1.0986123
## 7873  0.0000000
## 7874  1.0986123
## 7875  0.0000000
## 7876  0.0000000
## 7877  1.0986123
## 7878  0.0000000
## 7879  0.0000000
## 7880  3.6635616
## 7881  0.6931472
## 7882  0.0000000
## 7883  0.0000000
## 7884  0.0000000
## 7885  0.6931472
## 7886  0.6931472
## 7887  0.0000000
## 7888  0.0000000
## 7889  3.7612001
## 7890  0.0000000
## 7891  3.7612001
## 7892  0.0000000
## 7893  0.6931472
## 7894  1.0986123
## 7895  0.0000000
## 7896  0.0000000
## 7897  0.0000000
## 7898  0.0000000
## 7899  0.0000000
## 7900  0.0000000
## 7901  0.6931472
## 7902  0.6931472
## 7903  0.0000000
## 7904  0.0000000
## 7905  0.0000000
## 7906  0.6931472
## 7907  0.0000000
## 7908  0.0000000
## 7909  0.0000000
## 7910  1.0986123
## 7911  3.5263605
## 7912  0.0000000
## 7913  1.0986123
## 7914  0.0000000
## 7915  0.0000000
## 7916  0.0000000
## 7917  0.0000000
## 7918  0.0000000
## 7919  0.0000000
## 7920  2.0794415
## 7921  0.0000000
## 7922  0.0000000
## 7923  0.0000000
## 7924  0.6931472
## 7925  0.0000000
## 7926  0.0000000
## 7927  0.0000000
## 7928  0.0000000
## 7929  0.0000000
## 7930  0.0000000
## 7931  0.0000000
## 7932  0.6931472
## 7933  0.6931472
## 7934  0.0000000
## 7935  0.0000000
## 7936  0.0000000
## 7937  0.0000000
## 7938  0.0000000
## 7939  0.0000000
## 7940  0.0000000
## 7941  0.0000000
## 7942  0.0000000
## 7943  0.0000000
## 7944  0.0000000
## 7945  3.3672958
## 7946  0.0000000
## 7947  0.0000000
## 7948  0.0000000
## 7949  0.0000000
## 7950  0.6931472
## 7951  0.0000000
## 7952  0.0000000
## 7953  0.0000000
## 7954  0.6931472
## 7955  0.0000000
## 7956  0.0000000
## 7957  0.0000000
## 7958  0.0000000
## 7959  0.0000000
## 7960  0.0000000
## 7961  0.0000000
## 7962  0.0000000
## 7963  0.0000000
## 7964  3.5263605
## 7965  3.5263605
## 7966  0.0000000
## 7967  3.5263605
## 7968  3.5263605
## 7969  3.5263605
## 7970  3.5263605
## 7971  3.5263605
## 7972  0.0000000
## 7973  3.5263605
## 7974  3.5263605
## 7975  0.0000000
## 7976  0.0000000
## 7977  0.0000000
## 7978  0.0000000
## 7979  1.3862944
## 7980  1.3862944
## 7981  1.3862944
## 7982  0.0000000
## 7983  0.0000000
## 7984  0.0000000
## 7985  0.0000000
## 7986  0.0000000
## 7987  0.0000000
## 7988  0.0000000
## 7989  3.5263605
## 7990  3.5263605
## 7991  2.0794415
## 7992  0.0000000
## 7993  0.0000000
## 7994  0.0000000
## 7995  0.0000000
## 7996  0.0000000
## 7997  1.0986123
## 7998  1.0986123
## 7999  1.7917595
## 8000  0.0000000
## 8001  0.0000000
## 8002  0.0000000
## 8003  0.0000000
## 8004  0.0000000
## 8005  0.0000000
## 8006  0.0000000
## 8007  0.0000000
## 8008  0.0000000
## 8009  0.0000000
## 8010  0.0000000
## 8011  0.0000000
## 8012  0.0000000
## 8013  0.0000000
## 8014  0.0000000
## 8015  0.0000000
## 8016  0.0000000
## 8017  0.0000000
## 8018  0.0000000
## 8019  1.0986123
## 8020  0.0000000
## 8021  0.0000000
## 8022  0.0000000
## 8023  0.0000000
## 8024  1.0986123
## 8025  0.0000000
## 8026  0.0000000
## 8027  0.0000000
## 8028  0.6931472
## 8029  0.0000000
## 8030  0.0000000
## 8031  1.0986123
## 8032  0.0000000
## 8033  0.0000000
## 8034  0.0000000
## 8035  0.0000000
## 8036  0.6931472
## 8037  0.0000000
## 8038  0.0000000
## 8039  0.6931472
## 8040  0.0000000
## 8041  0.0000000
## 8042  1.3862944
## 8043  0.0000000
## 8044  0.0000000
## 8045  1.3862944
## 8046  0.0000000
## 8047  0.0000000
## 8048  0.0000000
## 8049  0.0000000
## 8050  0.0000000
## 8051  1.0986123
## 8052  0.0000000
## 8053  0.0000000
## 8054  0.0000000
## 8055  0.0000000
## 8056  0.0000000
## 8057  0.0000000
## 8058  0.0000000
## 8059  0.6931472
## 8060  0.6931472
## 8061  0.0000000
## 8062  0.0000000
## 8063  0.0000000
## 8064  0.6931472
## 8065  0.0000000
## 8066  0.0000000
## 8067  1.0986123
## 8068  0.0000000
## 8069  0.0000000
## 8070  0.0000000
## 8071  0.0000000
## 8072  0.6931472
## 8073  0.0000000
## 8074  1.3862944
## 8075  0.0000000
## 8076  0.0000000
## 8077  0.0000000
## 8078  3.3672958
## 8079  0.0000000
## 8080  0.0000000
## 8081  0.0000000
## 8082  0.0000000
## 8083  0.0000000
## 8084  0.6931472
## 8085  0.0000000
## 8086  0.0000000
## 8087  0.0000000
## 8088  0.0000000
## 8089  0.0000000
## 8090  0.0000000
## 8091  0.0000000
## 8092  0.0000000
## 8093  0.6931472
## 8094  0.0000000
## 8095  0.0000000
## 8096  0.0000000
## 8097  0.0000000
## 8098  0.0000000
## 8099  0.0000000
## 8100  0.0000000
## 8101  0.0000000
## 8102  0.0000000
## 8103  1.0986123
## 8104  1.6094379
## 8105  0.0000000
## 8106  0.0000000
## 8107  0.0000000
## 8108  3.9512437
## 8109  0.0000000
## 8110  0.0000000
## 8111  0.0000000
## 8112  0.0000000
## 8113  0.0000000
## 8114  0.0000000
## 8115  0.0000000
## 8116  0.0000000
## 8117  1.0986123
## 8118  0.0000000
## 8119  0.0000000
## 8120  0.0000000
## 8121  0.6931472
## 8122  0.0000000
## 8123  0.0000000
## 8124  0.0000000
## 8125  0.0000000
## 8126  0.0000000
## 8127  0.0000000
## 8128  1.0986123
## 8129  0.0000000
## 8130  0.6931472
## 8131  0.6931472
## 8132  0.0000000
## 8133  0.0000000
## 8134  0.0000000
## 8135  0.0000000
## 8136  0.0000000
## 8137  0.0000000
## 8138  0.0000000
## 8139  1.6094379
## 8140  0.0000000
## 8141  0.0000000
## 8142  0.0000000
## 8143  0.0000000
## 8144  0.0000000
## 8145  0.0000000
## 8146  0.0000000
## 8147  0.6931472
## 8148  0.0000000
## 8149  1.0986123
## 8150  0.0000000
## 8151  0.0000000
## 8152  0.0000000
## 8153  0.6931472
## 8154  0.0000000
## 8155  0.0000000
## 8156  0.6931472
## 8157  0.0000000
## 8158  0.0000000
## 8159  0.0000000
## 8160  1.0986123
## 8161  0.0000000
## 8162  0.0000000
## 8163  0.6931472
## 8164  0.0000000
## 8165  0.0000000
## 8166  0.0000000
## 8167  1.6094379
## 8168  0.0000000
## 8169  0.0000000
## 8170  0.0000000
## 8171  0.0000000
## 8172  1.0986123
## 8173  1.0986123
## 8174  0.0000000
## 8175  0.0000000
## 8176  0.0000000
## 8177  0.0000000
## 8178  0.0000000
## 8179  0.0000000
## 8180  0.0000000
## 8181  0.0000000
## 8182  0.0000000
## 8183  0.0000000
## 8184  0.0000000
## 8185  2.3025851
## 8186  0.0000000
## 8187  0.0000000
## 8188  0.0000000
## 8189  0.6931472
## 8190  0.6931472
## 8191  0.6931472
## 8192  0.0000000
## 8193  0.0000000
## 8194  0.0000000
## 8195  0.0000000
## 8196  0.0000000
## 8197  0.0000000
## 8198  0.0000000
## 8199  0.0000000
## 8200  0.0000000
## 8201  0.0000000
## 8202  0.0000000
## 8203  0.0000000
## 8204  0.0000000
## 8205  0.6931472
## 8206  0.0000000
## 8207  1.0986123
## 8208  0.0000000
## 8209  0.0000000
## 8210  0.0000000
## 8211  0.0000000
## 8212  0.0000000
## 8213  2.1972246
## 8214  0.0000000
## 8215  0.6931472
## 8216  0.6931472
## 8217  0.0000000
## 8218  0.6931472
## 8219  0.0000000
## 8220  0.0000000
## 8221  0.0000000
## 8222  0.0000000
## 8223  0.0000000
## 8224  0.0000000
## 8225  0.0000000
## 8226  0.0000000
## 8227  0.0000000
## 8228  0.6931472
## 8229  0.0000000
## 8230  0.0000000
## 8231  0.0000000
## 8232  0.0000000
## 8233  0.0000000
## 8234  0.6931472
## 8235  0.0000000
## 8236  0.0000000
## 8237  0.0000000
## 8238  0.6931472
## 8239  0.0000000
## 8240  1.6094379
## 8241  0.0000000
## 8242  0.0000000
## 8243  0.0000000
## 8244  0.0000000
## 8245  0.0000000
## 8246  0.0000000
## 8247  0.0000000
## 8248  0.0000000
## 8249  0.0000000
## 8250  0.0000000
## 8251  0.6931472
## 8252  0.0000000
## 8253  0.0000000
## 8254  0.0000000
## 8255  0.0000000
## 8256  0.0000000
## 8257  1.3862944
## 8258  2.3025851
## 8259  2.3025851
## 8260  0.0000000
## 8261  0.0000000
## 8262  0.6931472
## 8263  0.6931472
## 8264  0.0000000
## 8265  0.0000000
## 8266  0.0000000
## 8267  0.0000000
## 8268  0.0000000
## 8269  0.0000000
## 8270  0.0000000
## 8271  0.0000000
## 8272  0.0000000
## 8273  0.6931472
## 8274  0.0000000
## 8275  0.0000000
## 8276  0.6931472
## 8277  0.0000000
## 8278  0.0000000
## 8279  0.6931472
## 8280  0.0000000
## 8281  0.0000000
## 8282  0.6931472
## 8283  0.0000000
## 8284  0.0000000
## 8285  0.0000000
## 8286  0.0000000
## 8287  0.0000000
## 8288  0.0000000
## 8289  0.0000000
## 8290  0.6931472
## 8291  0.0000000
## 8292  2.1972246
## 8293  1.0986123
## 8294  0.0000000
## 8295  0.0000000
## 8296  0.6931472
## 8297  0.0000000
## 8298  0.0000000
## 8299  0.0000000
## 8300  0.0000000
## 8301  0.6931472
## 8302  0.0000000
## 8303  0.0000000
## 8304  0.0000000
## 8305  0.0000000
## 8306  0.0000000
## 8307  0.0000000
## 8308  0.0000000
## 8309  0.0000000
## 8310  0.0000000
## 8311  0.0000000
## 8312  0.0000000
## 8313  0.6931472
## 8314  0.0000000
## 8315  0.0000000
## 8316  0.6931472
## 8317  0.0000000
## 8318  0.0000000
## 8319  0.0000000
## 8320  0.0000000
## 8321  0.0000000
## 8322  0.0000000
## 8323  0.0000000
## 8324  0.6931472
## 8325  0.6931472
## 8326  0.0000000
## 8327  1.0986123
## 8328  1.6094379
## 8329  0.0000000
## 8330  0.0000000
## 8331  0.0000000
## 8332  0.0000000
## 8333  0.0000000
## 8334  0.0000000
## 8335  0.0000000
## 8336  0.6931472
## 8337  0.0000000
## 8338  0.6931472
## 8339  0.0000000
## 8340  0.0000000
## 8341  0.0000000
## 8342  0.0000000
## 8343  0.0000000
## 8344  0.0000000
## 8345  0.0000000
## 8346  0.0000000
## 8347  0.0000000
## 8348  0.0000000
## 8349  0.0000000
## 8350  0.0000000
## 8351  0.0000000
## 8352  0.0000000
## 8353  0.0000000
## 8354  1.3862944
## 8355  0.0000000
## 8356  0.0000000
## 8357  0.0000000
## 8358  0.6931472
## 8359  0.6931472
## 8360  0.0000000
## 8361  0.0000000
## 8362  0.0000000
## 8363  0.0000000
## 8364  0.0000000
## 8365  0.0000000
## 8366  0.0000000
## 8367  0.6931472
## 8368  0.0000000
## 8369  0.0000000
## 8370  0.0000000
## 8371  1.6094379
## 8372  0.0000000
## 8373  0.0000000
## 8374  0.0000000
## 8375  0.0000000
## 8376  0.0000000
## 8377  0.0000000
## 8378  0.0000000
## 8379  0.0000000
## 8380  0.0000000
## 8381  0.0000000
## 8382  0.0000000
## 8383  0.0000000
## 8384  0.0000000
## 8385  0.0000000
## 8386  0.0000000
## 8387  0.0000000
## 8388  0.0000000
## 8389  0.0000000
## 8390  0.0000000
## 8391  0.0000000
## 8392  0.0000000
## 8393  0.0000000
## 8394  0.0000000
## 8395  0.0000000
## 8396  0.0000000
## 8397  0.0000000
## 8398  0.0000000
## 8399  0.6931472
## 8400  0.0000000
## 8401  0.0000000
## 8402  0.0000000
## 8403  1.3862944
## 8404  1.3862944
## 8405  0.6931472
## 8406  0.0000000
## 8407  0.6931472
## 8408  0.0000000
## 8409  0.6931472
## 8410  0.6931472
## 8411  0.0000000
## 8412  0.0000000
## 8413  0.0000000
## 8414  0.0000000
## 8415  0.0000000
## 8416  0.0000000
## 8417  0.0000000
## 8418  0.0000000
## 8419  0.0000000
## 8420  0.0000000
## 8421  0.0000000
## 8422  0.0000000
## 8423  1.0986123
## 8424  2.5649494
## 8425  0.0000000
## 8426  0.0000000
## 8427  0.0000000
## 8428  0.0000000
## 8429  0.0000000
## 8430  0.0000000
## 8431  0.6931472
## 8432  0.0000000
## 8433  0.0000000
## 8434  0.0000000
## 8435  0.0000000
## 8436  0.0000000
## 8437  0.0000000
## 8438  0.6931472
## 8439  0.0000000
## 8440  0.6931472
## 8441  0.0000000
## 8442  0.0000000
## 8443  0.0000000
## 8444  0.6931472
## 8445  0.0000000
## 8446  0.0000000
## 8447  0.6931472
## 8448  0.6931472
## 8449  0.0000000
## 8450  0.6931472
## 8451  0.0000000
## 8452  0.0000000
## 8453  0.0000000
## 8454  0.0000000
## 8455  0.0000000
## 8456  0.0000000
## 8457  0.0000000
## 8458  0.0000000
## 8459  0.0000000
## 8460  0.0000000
## 8461  0.0000000
## 8462  0.0000000
## 8463  0.0000000
## 8464  0.0000000
## 8465  0.0000000
## 8466  4.7957905
## 8467  0.0000000
## 8468  0.0000000
## 8469  0.0000000
## 8470  0.0000000
## 8471  0.0000000
## 8472  3.3672958
## 8473  0.6931472
## 8474  1.0986123
## 8475  1.0986123
## 8476  0.0000000
## 8477  0.0000000
## 8478  0.0000000
## 8479  0.0000000
## 8480  0.6931472
## 8481  0.0000000
## 8482  0.0000000
## 8483  0.0000000
## 8484  1.7917595
## 8485  0.0000000
## 8486  1.7917595
## 8487  0.0000000
## 8488  0.0000000
## 8489  0.0000000
## 8490  0.0000000
## 8491  0.0000000
## 8492  0.6931472
## 8493  0.0000000
## 8494  0.0000000
## 8495  0.0000000
## 8496  0.0000000
## 8497  0.0000000
## 8498  0.0000000
## 8499  0.0000000
## 8500  0.0000000
## 8501  0.0000000
## 8502  0.0000000
## 8503  0.0000000
## 8504  0.0000000
## 8505  0.6931472
## 8506  0.0000000
## 8507  0.0000000
## 8508  0.0000000
## 8509  0.0000000
## 8510  0.0000000
## 8511  0.0000000
## 8512  0.0000000
## 8513  0.0000000
## 8514  0.6931472
## 8515  0.0000000
## 8516  0.0000000
## 8517  0.0000000
## 8518  0.0000000
## 8519  0.0000000
## 8520  0.0000000
## 8521  0.0000000
## 8522  0.0000000
## 8523  0.0000000
## 8524  0.0000000
## 8525  0.6931472
## 8526  0.0000000
## 8527  0.0000000
## 8528  0.0000000
## 8529  0.0000000
## 8530  3.0445224
## 8531  0.0000000
## 8532  3.0445224
## 8533  1.0986123
## 8534  0.0000000
## 8535  0.0000000
## 8536  0.0000000
## 8537  0.6931472
## 8538  0.0000000
## 8539  2.3978953
## 8540  2.3978953
## 8541  0.0000000
## 8542  0.0000000
## 8543  0.0000000
## 8544  0.0000000
## 8545  1.0986123
## 8546  0.0000000
## 8547  0.6931472
## 8548  0.0000000
## 8549  0.0000000
## 8550  0.0000000
## 8551  1.6094379
## 8552  0.0000000
## 8553  0.0000000
## 8554  0.0000000
## 8555  0.0000000
## 8556  0.0000000
## 8557  0.0000000
## 8558  0.0000000
## 8559  0.0000000
## 8560  0.0000000
## 8561  0.0000000
## 8562  0.0000000
## 8563  0.6931472
## 8564  0.0000000
## 8565  1.6094379
## 8566  0.0000000
## 8567  0.0000000
## 8568  0.0000000
## 8569  0.6931472
## 8570  0.0000000
## 8571  0.0000000
## 8572  0.0000000
## 8573  0.0000000
## 8574  0.0000000
## 8575  0.0000000
## 8576  0.6931472
## 8577  0.0000000
## 8578  0.0000000
## 8579  0.0000000
## 8580  0.0000000
## 8581  0.6931472
## 8582  0.0000000
## 8583  0.0000000
## 8584  1.6094379
## 8585  0.0000000
## 8586  0.0000000
## 8587  0.0000000
## 8588  0.0000000
## 8589  0.6931472
## 8590  0.0000000
## 8591  0.0000000
## 8592  0.0000000
## 8593  0.0000000
## 8594  0.0000000
## 8595  1.0986123
## 8596  0.0000000
## 8597  0.0000000
## 8598  0.0000000
## 8599  0.0000000
## 8600  0.0000000
## 8601  0.0000000
## 8602  0.0000000
## 8603  0.0000000
## 8604  0.0000000
## 8605  0.0000000
## 8606  0.0000000
## 8607  0.0000000
## 8608  0.0000000
## 8609  0.0000000
## 8610  0.0000000
## 8611  0.0000000
## 8612  0.6931472
## 8613  0.0000000
## 8614  0.0000000
## 8615  0.0000000
## 8616  0.0000000
## 8617  0.0000000
## 8618  0.0000000
## 8619  0.0000000
## 8620  0.0000000
## 8621  0.0000000
## 8622  0.6931472
## 8623  0.0000000
## 8624  0.0000000
## 8625  0.0000000
## 8626  0.0000000
## 8627  0.6931472
## 8628  0.0000000
## 8629  0.0000000
## 8630  0.0000000
## 8631  0.0000000
## 8632  1.9459101
## 8633  0.0000000
## 8634  0.0000000
## 8635  0.6931472
## 8636  0.0000000
## 8637  0.0000000
## 8638  1.0986123
## 8639  0.0000000
## 8640  0.0000000
## 8641  0.0000000
## 8642  0.0000000
## 8643  0.6931472
## 8644  0.0000000
## 8645  0.0000000
## 8646  0.6931472
## 8647  0.6931472
## 8648  0.6931472
## 8649  0.0000000
## 8650  0.0000000
## 8651  0.0000000
## 8652  1.6094379
## 8653  0.0000000
## 8654  1.6094379
## 8655  1.0986123
## 8656  0.6931472
## 8657  1.7917595
## 8658  0.6931472
## 8659  0.0000000
## 8660  0.0000000
## 8661  0.0000000
## 8662  0.0000000
## 8663  0.0000000
## 8664  0.0000000
## 8665  0.0000000
## 8666  0.0000000
## 8667  0.6931472
## 8668  1.0986123
## 8669  1.0986123
## 8670  0.6931472
## 8671  0.0000000
## 8672  0.0000000
## 8673  0.6931472
## 8674  0.0000000
## 8675  0.0000000
## 8676  1.7917595
## 8677  0.6931472
## 8678  0.0000000
## 8679  0.0000000
## 8680  0.0000000
## 8681  0.0000000
## 8682  1.0986123
## 8683  0.0000000
## 8684  0.0000000
## 8685  0.0000000
## 8686  0.0000000
## 8687  0.0000000
## 8688  0.0000000
## 8689  0.0000000
## 8690  0.6931472
## 8691  0.6931472
## 8692  0.0000000
## 8693  0.0000000
## 8694  0.6931472
## 8695  0.0000000
## 8696  0.0000000
## 8697  0.6931472
## 8698  0.0000000
## 8699  0.0000000
## 8700  0.0000000
## 8701  0.0000000
## 8702  0.0000000
## 8703  0.0000000
## 8704  1.9459101
## 8705  0.0000000
## 8706  0.0000000
## 8707  0.0000000
## 8708  0.6931472
## 8709  0.6931472
## 8710  0.0000000
## 8711  0.0000000
## 8712  0.0000000
## 8713  1.3862944
## 8714  0.0000000
## 8715  0.6931472
## 8716  0.6931472
## 8717  0.0000000
## 8718  0.0000000
## 8719  0.0000000
## 8720  0.0000000
## 8721  0.0000000
## 8722  1.0986123
## 8723  0.0000000
## 8724  1.9459101
## 8725  0.0000000
## 8726  0.0000000
## 8727  1.6094379
## 8728  3.9512437
## 8729  0.6931472
## 8730  0.0000000
## 8731  0.0000000
## 8732  0.0000000
## 8733  0.0000000
## 8734  0.0000000
## 8735  0.0000000
## 8736  0.6931472
## 8737  0.0000000
## 8738  0.0000000
## 8739  1.7917595
## 8740  0.0000000
## 8741  0.0000000
## 8742  0.0000000
## 8743  0.0000000
## 8744  1.0986123
## 8745  0.0000000
## 8746  1.0986123
## 8747  0.0000000
## 8748  1.0986123
## 8749  0.0000000
## 8750  0.0000000
## 8751  0.0000000
## 8752  0.0000000
## 8753  0.0000000
## 8754  0.6931472
## 8755  3.3322045
## 8756  1.0986123
## 8757  1.0986123
## 8758  0.0000000
## 8759  0.0000000
## 8760  0.6931472
## 8761  0.0000000
## 8762  1.0986123
## 8763  0.0000000
## 8764  0.0000000
## 8765  0.0000000
## 8766  0.0000000
## 8767  0.0000000
## 8768  0.0000000
## 8769  1.0986123
## 8770  1.3862944
## 8771  0.0000000
## 8772  1.6094379
## 8773  0.0000000
## 8774  0.0000000
## 8775  1.0986123
## 8776  0.0000000
## 8777  0.0000000
## 8778  0.0000000
## 8779  0.0000000
## 8780  0.0000000
## 8781  0.6931472
## 8782  0.0000000
## 8783  0.0000000
## 8784  0.0000000
## 8785  0.0000000
## 8786  0.0000000
## 8787  0.0000000
## 8788  0.0000000
## 8789  2.3025851
## 8790  0.6931472
## 8791  0.0000000
## 8792  0.6931472
## 8793  0.0000000
## 8794  0.0000000
## 8795  0.0000000
## 8796  3.7612001
## 8797  0.6931472
## 8798  3.7612001
## 8799  0.0000000
## 8800  3.7612001
## 8801  3.7612001
## 8802  3.7612001
## 8803  1.3862944
## 8804  0.0000000
## 8805  0.0000000
## 8806  2.5649494
## 8807  2.5649494
## 8808  0.0000000
## 8809  0.0000000
## 8810  0.0000000
## 8811  0.6931472
## 8812  0.0000000
## 8813  0.0000000
## 8814  1.0986123
## 8815  0.0000000
## 8816  0.0000000
## 8817  0.6931472
## 8818  0.0000000
## 8819  0.0000000
## 8820  0.0000000
## 8821  0.0000000
## 8822  0.0000000
## 8823  0.6931472
## 8824  0.0000000
## 8825  0.0000000
## 8826  0.0000000
## 8827  0.0000000
## 8828  0.0000000
## 8829  0.0000000
## 8830  0.0000000
## 8831  0.0000000
## 8832  0.6931472
## 8833  0.0000000
## 8834  0.0000000
## 8835  0.0000000
## 8836  0.0000000
## 8837  0.6931472
## 8838  0.0000000
## 8839  0.0000000
## 8840  0.0000000
## 8841  0.0000000
## 8842  0.6931472
## 8843  0.0000000
## 8844  0.6931472
## 8845  0.0000000
## 8846  0.0000000
## 8847  0.0000000
## 8848  0.0000000
## 8849  0.0000000
## 8850  0.0000000
## 8851  0.0000000
## 8852  0.0000000
## 8853  0.0000000
## 8854  0.0000000
## 8855  0.0000000
## 8856  0.0000000
## 8857  0.0000000
## 8858  0.6931472
## 8859  0.0000000
## 8860  0.0000000
## 8861  3.6635616
## 8862  0.0000000
## 8863  0.0000000
## 8864  0.0000000
## 8865  0.0000000
## 8866  0.0000000
## 8867  0.6931472
## 8868  0.0000000
## 8869  0.0000000
## 8870  0.0000000
## 8871  0.0000000
## 8872  0.0000000
## 8873  0.0000000
## 8874  0.0000000
## 8875  2.0794415
## 8876  0.0000000
## 8877  3.6635616
## 8878  0.0000000
## 8879  2.0794415
## 8880  0.0000000
## 8881  0.0000000
## 8882  3.0445224
## 8883  0.0000000
## 8884  0.0000000
## 8885  0.0000000
## 8886  0.0000000
## 8887  0.0000000
## 8888  0.0000000
## 8889  2.0794415
## 8890  0.0000000
## 8891  0.6931472
## 8892  0.0000000
## 8893  1.0986123
## 8894  0.0000000
## 8895  0.0000000
## 8896  0.6931472
## 8897  0.0000000
## 8898  0.0000000
## 8899  0.0000000
## 8900  2.0794415
## 8901  0.0000000
## 8902  0.0000000
## 8903  0.6931472
## 8904  0.0000000
## 8905  1.3862944
## 8906  0.0000000
## 8907  0.0000000
## 8908  0.0000000
## 8909  2.0794415
## 8910  0.0000000
## 8911  1.0986123
## 8912  0.0000000
## 8913  0.0000000
## 8914  0.0000000
## 8915  0.6931472
## 8916  0.0000000
## 8917  2.0794415
## 8918  1.0986123
## 8919  0.6931472
## 8920  0.6931472
## 8921  0.0000000
## 8922  0.0000000
## 8923  0.0000000
## 8924  0.0000000
## 8925  0.0000000
## 8926  0.0000000
## 8927  0.0000000
## 8928  0.0000000
## 8929  0.0000000
## 8930  0.0000000
## 8931  1.0986123
## 8932  1.9459101
## 8933  2.0794415
## 8934  0.0000000
## 8935  0.0000000
## 8936  0.0000000
## 8937  0.0000000
## 8938  0.0000000
## 8939  0.0000000
## 8940  0.0000000
## 8941  0.0000000
## 8942  0.6931472
## 8943  0.0000000
## 8944  0.0000000
## 8945  0.0000000
## 8946  0.0000000
## 8947  0.0000000
## 8948  0.6931472
## 8949  0.6931472
## 8950  0.0000000
## 8951  0.0000000
## 8952  0.6931472
## 8953  0.0000000
## 8954  0.0000000
## 8955  0.0000000
## 8956  0.0000000
## 8957  0.0000000
## 8958  1.9459101
## 8959  0.0000000
## 8960  0.6931472
## 8961  0.0000000
## 8962  0.0000000
## 8963  0.0000000
## 8964  1.0986123
## 8965  1.0986123
## 8966  0.6931472
## 8967  0.0000000
## 8968  0.0000000
## 8969  0.0000000
## 8970  0.0000000
## 8971  0.0000000
## 8972  1.0986123
## 8973  1.7917595
## 8974  0.0000000
## 8975  0.0000000
## 8976  0.0000000
## 8977  0.0000000
## 8978  0.0000000
## 8979  0.0000000
## 8980  0.0000000
## 8981  0.6931472
## 8982  0.0000000
## 8983  0.0000000
## 8984  0.6931472
## 8985  0.6931472
## 8986  0.0000000
## 8987  0.0000000
## 8988  0.6931472
## 8989  0.6931472
## 8990  0.6931472
## 8991  0.0000000
## 8992  0.0000000
## 8993  0.0000000
## 8994  0.6931472
## 8995  0.0000000
## 8996  0.0000000
## 8997  0.0000000
## 8998  0.0000000
## 8999  0.0000000
## 9000  0.0000000
## 9001  0.0000000
## 9002  0.0000000
## 9003  1.6094379
## 9004  0.0000000
## 9005  0.0000000
## 9006  2.6390573
## 9007  0.0000000
## 9008  0.0000000
## 9009  0.0000000
## 9010  0.0000000
## 9011  0.0000000
## 9012  2.5649494
## 9013  0.0000000
## 9014  0.0000000
## 9015  0.0000000
## 9016  0.0000000
## 9017  0.0000000
## 9018  0.0000000
## 9019  0.0000000
## 9020  0.0000000
## 9021  0.0000000
## 9022  0.6931472
## 9023  0.6931472
## 9024  0.6931472
## 9025  0.0000000
## 9026  0.0000000
## 9027  0.0000000
## 9028  0.0000000
## 9029  0.0000000
## 9030  0.6931472
## 9031  0.6931472
## 9032  0.0000000
## 9033  0.0000000
## 9034  3.6635616
## 9035  0.0000000
## 9036  0.0000000
## 9037  0.6931472
## 9038  0.0000000
## 9039  0.0000000
## 9040  0.0000000
## 9041  0.6931472
## 9042  0.0000000
## 9043  0.0000000
## 9044  0.0000000
## 9045  0.0000000
## 9046  0.0000000
## 9047  0.0000000
## 9048  0.0000000
## 9049  0.0000000
## 9050  0.0000000
## 9051  0.0000000
## 9052  0.0000000
## 9053  0.6931472
## 9054  0.0000000
## 9055  1.6094379
## 9056  0.0000000
## 9057  0.0000000
## 9058  0.0000000
## 9059  0.6931472
## 9060  0.0000000
## 9061  0.0000000
## 9062  2.0794415
## 9063  0.0000000
## 9064  0.0000000
## 9065  0.0000000
## 9066  0.0000000
## 9067  1.6094379
## 9068  0.0000000
## 9069  0.0000000
## 9070  0.0000000
## 9071  4.7957905
## 9072  0.0000000
## 9073  0.0000000
## 9074  0.6931472
## 9075  0.0000000
## 9076  0.0000000
## 9077  0.0000000
## 9078  0.0000000
## 9079  0.6931472
## 9080  0.0000000
## 9081  1.9459101
## 9082  1.9459101
## 9083  1.9459101
## 9084  0.0000000
## 9085  1.9459101
## 9086  1.9459101
## 9087  0.6931472
## 9088  0.0000000
## 9089  0.0000000
## 9090  0.0000000
## 9091  0.0000000
## 9092  0.0000000
## 9093  0.6931472
## 9094  0.0000000
## 9095  0.0000000
## 9096  0.6931472
## 9097  0.6931472
## 9098  0.0000000
## 9099  0.0000000
## 9100  0.6931472
## 9101  0.0000000
## 9102  0.0000000
## 9103  1.0986123
## 9104  0.0000000
## 9105  0.0000000
## 9106  4.7957905
## 9107  0.0000000
## 9108  0.6931472
## 9109  0.0000000
## 9110  0.0000000
## 9111  1.0986123
## 9112  0.0000000
## 9113  2.3978953
## 9114  1.0986123
## 9115  0.0000000
## 9116  2.5649494
## 9117  0.0000000
## 9118  0.0000000
## 9119  0.0000000
## 9120  0.0000000
## 9121  0.0000000
## 9122  0.0000000
## 9123  0.0000000
## 9124  0.0000000
## 9125  1.0986123
## 9126  0.0000000
## 9127  0.0000000
## 9128  1.0986123
## 9129  0.0000000
## 9130  0.0000000
## 9131  0.0000000
## 9132  0.0000000
## 9133  0.0000000
## 9134  1.0986123
## 9135  1.0986123
## 9136  2.8903718
## 9137  0.0000000
## 9138  0.0000000
## 9139  0.6931472
## 9140  0.0000000
## 9141  0.0000000
## 9142  0.0000000
## 9143  0.0000000
## 9144  0.0000000
## 9145  1.0986123
## 9146  0.6931472
## 9147  0.0000000
## 9148  0.0000000
## 9149  0.0000000
## 9150  0.0000000
## 9151  0.0000000
## 9152  0.0000000
## 9153  0.0000000
## 9154  0.0000000
## 9155  0.0000000
## 9156  0.0000000
## 9157  0.0000000
## 9158  0.0000000
## 9159  0.0000000
## 9160  0.0000000
## 9161  0.0000000
## 9162  0.0000000
## 9163  0.0000000
## 9164  0.0000000
## 9165  0.0000000
## 9166  0.0000000
## 9167  1.3862944
## 9168  0.0000000
## 9169  0.0000000
## 9170  0.0000000
## 9171  0.0000000
## 9172  0.0000000
## 9173  0.0000000
## 9174  0.0000000
## 9175  0.0000000
## 9176  0.0000000
## 9177  0.0000000
## 9178  0.0000000
## 9179  0.0000000
## 9180  0.0000000
## 9181  0.0000000
## 9182  0.6931472
## 9183  1.6094379
## 9184  1.9459101
## 9185  0.0000000
## 9186  0.0000000
## 9187  0.6931472
## 9188  0.6931472
## 9189  0.0000000
## 9190  0.0000000
## 9191  0.0000000
## 9192  0.6931472
## 9193  0.6931472
## 9194  0.0000000
## 9195  0.0000000
## 9196  0.0000000
## 9197  1.0986123
## 9198  0.0000000
## 9199  0.0000000
## 9200  4.7957905
## 9201  0.0000000
## 9202  0.0000000
## 9203  0.0000000
## 9204  0.0000000
## 9205  0.0000000
## 9206  0.0000000
## 9207  0.0000000
## 9208  2.0794415
## 9209  0.6931472
## 9210  0.6931472
## 9211  0.0000000
## 9212  0.0000000
## 9213  0.0000000
## 9214  0.0000000
## 9215  0.0000000
## 9216  0.0000000
## 9217  0.0000000
## 9218  0.0000000
## 9219  0.0000000
## 9220  0.0000000
## 9221  0.0000000
## 9222  0.0000000
## 9223  0.0000000
## 9224  2.5649494
## 9225  0.0000000
## 9226  1.3862944
## 9227  0.6931472
## 9228  0.0000000
## 9229  0.0000000
## 9230  1.3862944
## 9231  0.0000000
## 9232  2.3978953
## 9233  0.0000000
## 9234  0.0000000
## 9235  0.0000000
## 9236  0.0000000
## 9237  0.0000000
## 9238  0.0000000
## 9239  1.6094379
## 9240  0.0000000
## 9241  0.0000000
## 9242  0.6931472
## 9243  0.0000000
## 9244  0.0000000
## 9245  0.0000000
## 9246  0.0000000
## 9247  0.0000000
## 9248  0.0000000
## 9249  0.0000000
## 9250  0.0000000
## 9251  0.0000000
## 9252  0.0000000
## 9253  0.0000000
## 9254  0.6931472
## 9255  0.0000000
## 9256  2.3025851
## 9257  0.0000000
## 9258  0.0000000
## 9259  0.6931472
## 9260  2.3025851
## 9261  0.0000000
## 9262  0.0000000
## 9263  1.0986123
## 9264  0.0000000
## 9265  0.0000000
## 9266  0.0000000
## 9267  0.0000000
## 9268  0.0000000
## 9269  0.0000000
## 9270  0.6931472
## 9271  0.0000000
## 9272  0.0000000
## 9273  0.0000000
## 9274  0.0000000
## 9275  0.0000000
## 9276  0.0000000
## 9277  0.0000000
## 9278  0.0000000
## 9279  0.0000000
## 9280  0.0000000
## 9281  0.6931472
## 9282  2.3025851
## 9283  2.3025851
## 9284  0.6931472
## 9285  0.6931472
## 9286  0.6931472
## 9287  0.0000000
## 9288  0.0000000
## 9289  0.6931472
## 9290  0.0000000
## 9291  0.0000000
## 9292  0.6931472
## 9293  0.0000000
## 9294  0.0000000
## 9295  0.0000000
## 9296  0.6931472
## 9297  0.0000000
## 9298  0.0000000
## 9299  0.0000000
## 9300  1.6094379
## 9301  0.0000000
## 9302  0.6931472
## 9303  0.0000000
## 9304  0.0000000
## 9305  0.0000000
## 9306  0.0000000
## 9307  0.0000000
## 9308  1.3862944
## 9309  0.0000000
## 9310  0.0000000
## 9311  0.6931472
## 9312  1.3862944
## 9313  0.0000000
## 9314  1.6094379
## 9315  0.0000000
## 9316  0.0000000
## 9317  1.6094379
## 9318  0.0000000
## 9319  2.0794415
## 9320  0.0000000
## 9321  1.0986123
## 9322  0.6931472
## 9323  0.0000000
## 9324  0.0000000
## 9325  1.6094379
## 9326  0.0000000
## 9327  0.6931472
## 9328  1.6094379
## 9329  0.0000000
## 9330  0.0000000
## 9331  0.0000000
## 9332  0.0000000
## 9333  0.0000000
## 9334  0.0000000
## 9335  0.0000000
## 9336  4.7957905
## 9337  4.7957905
## 9338  0.0000000
## 9339  0.0000000
## 9340  0.0000000
## 9341  0.0000000
## 9342  0.0000000
## 9343  0.0000000
## 9344  0.0000000
## 9345  0.0000000
## 9346  0.0000000
## 9347  1.0986123
## 9348  0.0000000
## 9349  0.6931472
## 9350  1.6094379
## 9351  0.0000000
## 9352  0.0000000
## 9353  0.0000000
## 9354  0.0000000
## 9355  0.0000000
## 9356  0.0000000
## 9357  0.0000000
## 9358  1.3862944
## 9359  0.0000000
## 9360  0.6931472
## 9361  0.0000000
## 9362  0.0000000
## 9363  0.0000000
## 9364  0.0000000
## 9365  0.0000000
## 9366  1.0986123
## 9367  0.0000000
## 9368  0.0000000
## 9369  0.0000000
## 9370  0.0000000
## 9371  0.0000000
## 9372  0.6931472
## 9373  0.0000000
## 9374  0.0000000
## 9375  0.0000000
## 9376  0.0000000
## 9377  0.0000000
## 9378  0.0000000
## 9379  0.0000000
## 9380  0.0000000
## 9381  1.6094379
## 9382  1.6094379
## 9383  0.0000000
## 9384  0.0000000
## 9385  0.0000000
## 9386  0.0000000
## 9387  0.0000000
## 9388  0.0000000
## 9389  0.0000000
## 9390  0.0000000
## 9391  1.0986123
## 9392  0.6931472
## 9393  0.6931472
## 9394  0.0000000
## 9395  0.0000000
## 9396  0.0000000
## 9397  0.0000000
## 9398  0.0000000
## 9399  0.0000000
## 9400  0.0000000
## 9401  0.0000000
## 9402  0.0000000
## 9403  0.0000000
## 9404  0.0000000
## 9405  0.0000000
## 9406  0.6931472
## 9407  0.0000000
## 9408  0.0000000
## 9409  0.0000000
## 9410  1.0986123
## 9411  0.0000000
## 9412  0.0000000
## 9413  0.0000000
## 9414  0.0000000
## 9415  0.0000000
## 9416  0.0000000
## 9417  0.0000000
## 9418  0.6931472
## 9419  0.0000000
## 9420  0.0000000
## 9421  0.6931472
## 9422  0.6931472
## 9423  0.6931472
## 9424  0.0000000
## 9425  0.0000000
## 9426  0.0000000
## 9427  0.0000000
## 9428  0.0000000
## 9429  0.0000000
## 9430  1.3862944
## 9431  0.0000000
## 9432  1.0986123
## 9433  0.0000000
## 9434  0.0000000
## 9435  0.0000000
## 9436  0.0000000
## 9437  0.0000000
## 9438  0.0000000
## 9439  0.0000000
## 9440  0.0000000
## 9441  0.0000000
## 9442  0.0000000
## 9443  0.6931472
## 9444  0.6931472
## 9445  0.6931472
## 9446  0.0000000
## 9447  0.0000000
## 9448  0.0000000
## 9449  0.0000000
## 9450  0.0000000
## 9451  0.0000000
## 9452  1.6094379
## 9453  1.6094379
## 9454  1.0986123
## 9455  0.0000000
## 9456  1.3862944
## 9457  0.6931472
## 9458  0.6931472
## 9459  0.0000000
## 9460  0.6931472
## 9461  0.6931472
## 9462  1.6094379
## 9463  0.0000000
## 9464  0.0000000
## 9465  0.0000000
## 9466  0.0000000
## 9467  1.0986123
## 9468  1.9459101
## 9469  0.0000000
## 9470  0.6931472
## 9471  0.0000000
## 9472  0.0000000
## 9473  0.0000000
## 9474  0.0000000
## 9475  0.0000000
## 9476  0.6931472
## 9477  0.0000000
## 9478  0.0000000
## 9479  0.0000000
## 9480  0.6931472
## 9481  0.0000000
## 9482  0.0000000
## 9483  1.3862944
## 9484  0.0000000
## 9485  0.0000000
## 9486  0.0000000
## 9487  0.6931472
## 9488  0.6931472
## 9489  0.0000000
## 9490  0.0000000
## 9491  0.0000000
## 9492  0.0000000
## 9493  0.0000000
## 9494  0.0000000
## 9495  0.0000000
## 9496  0.0000000
## 9497  0.0000000
## 9498  0.0000000
## 9499  0.0000000
## 9500  0.0000000
## 9501  0.0000000
## 9502  0.0000000
## 9503  0.0000000
## 9504  0.0000000
## 9505  0.0000000
## 9506  0.0000000
## 9507  0.0000000
## 9508  0.0000000
## 9509  0.0000000
## 9510  0.0000000
## 9511  0.0000000
## 9512  0.0000000
## 9513  1.3862944
## 9514  0.0000000
## 9515  0.0000000
## 9516  0.6931472
## 9517  0.0000000
## 9518  1.0986123
## 9519  0.0000000
## 9520  0.0000000
## 9521  0.0000000
## 9522  0.0000000
## 9523  0.0000000
## 9524  0.0000000
## 9525  0.0000000
## 9526  0.0000000
## 9527  3.2580965
## 9528  0.0000000
## 9529  0.0000000
## 9530  0.0000000
## 9531  1.0986123
## 9532  0.6931472
## 9533  0.0000000
## 9534  0.0000000
## 9535  0.0000000
## 9536  0.0000000
## 9537  0.0000000
## 9538  1.6094379
## 9539  3.0445224
## 9540  0.0000000
## 9541  1.3862944
## 9542  1.0986123
## 9543  1.0986123
## 9544  1.9459101
## 9545  0.6931472
## 9546  0.0000000
## 9547  0.0000000
## 9548  0.0000000
## 9549  0.0000000
## 9550  0.0000000
## 9551  0.0000000
## 9552  1.0986123
## 9553  0.6931472
## 9554  0.0000000
## 9555  0.0000000
## 9556  0.0000000
## 9557  0.0000000
## 9558  0.0000000
## 9559  0.0000000
## 9560  0.6931472
## 9561  0.0000000
## 9562  0.0000000
## 9563  1.0986123
## 9564  0.0000000
## 9565  1.3862944
## 9566  0.0000000
## 9567  0.0000000
## 9568  0.0000000
## 9569  0.0000000
## 9570  0.6931472
## 9571  0.6931472
## 9572  0.0000000
## 9573  0.0000000
## 9574  0.0000000
## 9575  0.0000000
## 9576  0.0000000
## 9577  0.0000000
## 9578  0.6931472
## 9579  0.0000000
## 9580  0.6931472
## 9581  0.0000000
## 9582  0.0000000
## 9583  0.0000000
## 9584  0.6931472
## 9585  0.0000000
## 9586  0.0000000
## 9587  0.0000000
## 9588  1.0986123
## 9589  0.0000000
## 9590  0.0000000
## 9591  0.6931472
## 9592  0.0000000
## 9593  1.0986123
## 9594  0.0000000
## 9595  0.0000000
## 9596  0.0000000
## 9597  0.0000000
## 9598  0.0000000
## 9599  0.0000000
## 9600  0.0000000
## 9601  0.0000000
## 9602  0.6931472
## 9603  0.0000000
## 9604  0.0000000
## 9605  0.0000000
## 9606  1.3862944
## 9607  0.0000000
## 9608  0.6931472
## 9609  0.0000000
## 9610  1.0986123
## 9611  0.6931472
## 9612  0.0000000
## 9613  0.0000000
## 9614  0.0000000
## 9615  0.0000000
## 9616  0.0000000
## 9617  0.0000000
## 9618  0.0000000
## 9619  0.0000000
## 9620  3.6109179
## 9621  0.6931472
## 9622  0.0000000
## 9623  1.0986123
## 9624  0.6931472
## 9625  0.0000000
## 9626  0.0000000
## 9627  0.0000000
## 9628  0.0000000
## 9629  0.0000000
## 9630  0.0000000
## 9631  0.0000000
## 9632  0.0000000
## 9633  0.0000000
## 9634  0.0000000
## 9635  0.0000000
## 9636  0.0000000
## 9637  1.0986123
## 9638  0.0000000
## 9639  0.0000000
## 9640  0.0000000
## 9641  0.0000000
## 9642  0.0000000
## 9643  0.0000000
## 9644  0.0000000
## 9645  0.6931472
## 9646  1.0986123
## 9647  0.0000000
## 9648  1.3862944
## 9649  0.0000000
## 9650  0.6931472
## 9651  1.3862944
## 9652  0.0000000
## 9653  0.0000000
## 9654  0.0000000
## 9655  0.0000000
## 9656  0.0000000
## 9657  0.0000000
## 9658  0.0000000
## 9659  0.0000000
## 9660  0.0000000
## 9661  0.0000000
## 9662  0.0000000
## 9663  1.6094379
## 9664  1.0986123
## 9665  0.0000000
## 9666  0.0000000
## 9667  1.3862944
## 9668  0.6931472
## 9669  0.0000000
## 9670  0.0000000
## 9671  0.0000000
## 9672  0.0000000
## 9673  0.6931472
## 9674  0.0000000
## 9675  0.0000000
## 9676  2.4849066
## 9677  0.6931472
## 9678  0.0000000
## 9679  1.0986123
## 9680  1.6094379
## 9681  0.6931472
## 9682  0.0000000
## 9683  0.0000000
## 9684  0.0000000
## 9685  0.0000000
## 9686  2.0794415
## 9687  0.0000000
## 9688  0.6931472
## 9689  0.0000000
## 9690  0.6931472
## 9691  0.6931472
## 9692  0.6931472
## 9693  0.0000000
## 9694  0.6931472
## 9695  0.0000000
## 9696  1.3862944
## 9697  0.6931472
## 9698  0.0000000
## 9699  0.0000000
## 9700  0.0000000
## 9701  0.0000000
## 9702  1.9459101
## 9703  2.1972246
## 9704  0.0000000
## 9705  0.0000000
## 9706  0.0000000
## 9707  0.0000000
## 9708  0.0000000
## 9709  0.0000000
## 9710  0.6931472
## 9711  0.0000000
## 9712  0.0000000
## 9713  0.0000000
## 9714  0.0000000
## 9715  0.0000000
## 9716  0.0000000
## 9717  0.6931472
## 9718  0.0000000
## 9719  0.6931472
## 9720  0.0000000
## 9721  0.0000000
## 9722  0.0000000
## 9723  1.3862944
## 9724  0.6931472
## 9725  0.0000000
## 9726  0.0000000
## 9727  0.0000000
## 9728  0.0000000
## 9729  2.7080502
## 9730  0.0000000
## 9731  0.0000000
## 9732  3.9512437
## 9733  0.0000000
## 9734  2.0794415
## 9735  0.0000000
## 9736  0.0000000
## 9737  0.0000000
## 9738  0.0000000
## 9739  0.0000000
## 9740  3.9512437
## 9741  0.0000000
## 9742  0.6931472
## 9743  0.6931472
## 9744  0.0000000
## 9745  2.4849066
## 9746  0.0000000
## 9747  0.6931472
## 9748  0.0000000
## 9749  0.0000000
## 9750  1.3862944
## 9751  0.6931472
## 9752  0.0000000
## 9753  0.0000000
## 9754  0.6931472
## 9755  0.0000000
## 9756  0.0000000
## 9757  0.6931472
## 9758  0.0000000
## 9759  0.0000000
## 9760  0.0000000
## 9761  0.0000000
## 9762  1.6094379
## 9763  0.0000000
## 9764  0.0000000
## 9765  0.0000000
## 9766  0.0000000
## 9767  0.6931472
## 9768  0.0000000
## 9769  0.0000000
## 9770  0.0000000
## 9771  1.0986123
## 9772  1.3862944
## 9773  0.0000000
## 9774  0.0000000
## 9775  1.3862944
## 9776  0.0000000
## 9777  0.6931472
## 9778  1.3862944
## 9779  2.0794415
## 9780  0.0000000
## 9781  0.6931472
## 9782  0.0000000
## 9783  1.3862944
## 9784  0.0000000
## 9785  0.6931472
## 9786  0.0000000
## 9787  0.0000000
## 9788  0.0000000
## 9789  1.0986123
## 9790  0.0000000
## 9791  0.0000000
## 9792  0.0000000
## 9793  0.0000000
## 9794  0.0000000
## 9795  0.6931472
## 9796  1.0986123
## 9797  0.0000000
## 9798  0.0000000
## 9799  0.0000000
## 9800  1.3862944
## 9801  0.0000000
## 9802  0.0000000
## 9803  0.0000000
## 9804  1.3862944
## 9805  0.6931472
## 9806  0.6931472
## 9807  0.0000000
## 9808  0.0000000
## 9809  0.0000000
## 9810  0.0000000
## 9811  0.0000000
## 9812  0.0000000
## 9813  0.0000000
## 9814  0.0000000
## 9815  0.0000000
## 9816  0.6931472
## 9817  0.0000000
## 9818  1.0986123
## 9819  0.0000000
## 9820  0.0000000
## 9821  0.0000000
## 9822  0.6931472
## 9823  0.0000000
## 9824  0.0000000
## 9825  0.0000000
## 9826  0.0000000
## 9827  0.6931472
## 9828  0.0000000
## 9829  0.6931472
## 9830  0.0000000
## 9831  0.0000000
## 9832  0.0000000
## 9833  0.0000000
## 9834  0.0000000
## 9835  1.6094379
## 9836  0.0000000
## 9837  0.0000000
## 9838  0.0000000
## 9839  0.0000000
## 9840  0.0000000
## 9841  0.0000000
## 9842  0.0000000
## 9843  0.0000000
## 9844  0.0000000
## 9845  2.4849066
## 9846  0.0000000
## 9847  0.0000000
## 9848  0.0000000
## 9849  0.0000000
## 9850  0.0000000
## 9851  0.0000000
## 9852  0.0000000
## 9853  0.0000000
## 9854  1.0986123
## 9855  0.0000000
## 9856  0.0000000
## 9857  0.0000000
## 9858  0.0000000
## 9859  0.0000000
## 9860  0.0000000
## 9861  1.6094379
## 9862  0.6931472
## 9863  0.0000000
## 9864  0.0000000
## 9865  0.0000000
## 9866  0.0000000
## 9867  0.0000000
## 9868  0.6931472
## 9869  1.0986123
## 9870  0.0000000
## 9871  0.6931472
## 9872  0.0000000
## 9873  0.0000000
## 9874  0.0000000
## 9875  0.0000000
## 9876  0.6931472
## 9877  0.0000000
## 9878  0.0000000
## 9879  0.0000000
## 9880  1.6094379
## 9881  0.0000000
## 9882  0.0000000
## 9883  0.0000000
## 9884  1.3862944
## 9885  0.0000000
## 9886  0.0000000
## 9887  0.6931472
## 9888  0.0000000
## 9889  0.0000000
## 9890  0.0000000
## 9891  0.6931472
## 9892  0.6931472
## 9893  0.0000000
## 9894  0.0000000
## 9895  0.0000000
## 9896  0.0000000
## 9897  0.0000000
## 9898  0.0000000
## 9899  0.0000000
## 9900  0.0000000
## 9901  0.6931472
## 9902  0.0000000
## 9903  0.0000000
## 9904  0.6931472
## 9905  0.0000000
## 9906  0.0000000
## 9907  0.0000000
## 9908  0.0000000
## 9909  0.0000000
## 9910  0.0000000
## 9911  3.2580965
## 9912  0.0000000
## 9913  3.2580965
## 9914  0.0000000
## 9915  0.6931472
## 9916  0.0000000
## 9917  0.0000000
## 9918  0.0000000
## 9919  0.0000000
## 9920  0.0000000
## 9921  0.0000000
## 9922  0.0000000
## 9923  0.6931472
## 9924  2.1972246
## 9925  2.1972246
## 9926  2.1972246
## 9927  2.1972246
## 9928  2.1972246
## 9929  0.0000000
## 9930  1.0986123
## 9931  0.0000000
## 9932  0.0000000
## 9933  0.6931472
## 9934  0.6931472
## 9935  0.0000000
## 9936  1.0986123
## 9937  0.6931472
## 9938  0.0000000
## 9939  0.0000000
## 9940  0.0000000
## 9941  1.9459101
## 9942  0.0000000
## 9943  0.0000000
## 9944  0.0000000
## 9945  0.6931472
## 9946  0.6931472
## 9947  0.0000000
## 9948  0.0000000
## 9949  0.6931472
## 9950  0.6931472
## 9951  0.6931472
## 9952  0.0000000
## 9953  0.0000000
## 9954  0.0000000
## 9955  0.0000000
## 9956  0.0000000
## 9957  0.0000000
## 9958  0.0000000
## 9959  0.0000000
## 9960  0.0000000
## 9961  0.0000000
## 9962  0.0000000
## 9963  0.6931472
## 9964  1.9459101
## 9965  0.6931472
## 9966  1.3862944
## 9967  0.0000000
## 9968  1.3862944
## 9969  0.0000000
## 9970  0.0000000
## 9971  0.6931472
## 9972  0.6931472
## 9973  0.0000000
## 9974  4.7957905
## 9975  0.0000000
## 9976  1.0986123
## 9977  0.0000000
## 9978  1.9459101
## 9979  0.6931472
## 9980  2.4849066
## 9981  0.0000000
## 9982  0.0000000
## 9983  0.0000000
## 9984  0.0000000
## 9985  0.0000000
## 9986  0.0000000
## 9987  0.0000000
## 9988  1.0986123
## 9989  0.0000000
## 9990  0.0000000
## 9991  0.0000000
## 9992  3.9512437
## 9993  0.6931472
## 9994  0.0000000
## 9995  4.7957905
## 9996  0.0000000
## 9997  0.0000000
## 9998  0.0000000
## 9999  0.0000000
## 10000 0.0000000
## 10001 0.6931472
## 10002 0.6931472
## 10003 0.0000000
## 10004 0.0000000
## 10005 0.0000000
## 10006 0.0000000
## 10007 0.0000000
## 10008 4.7957905
## 10009 0.0000000
## 10010 0.0000000
## 10011 1.0986123
## 10012 0.0000000
## 10013 0.0000000
## 10014 0.0000000
## 10015 0.0000000
## 10016 0.0000000
## 10017 0.0000000
## 10018 0.0000000
## 10019 0.0000000
## 10020 0.6931472
## 10021 0.0000000
## 10022 0.0000000
## 10023 0.0000000
## 10024 0.0000000
## 10025 0.6931472
## 10026 0.0000000
## 10027 1.3862944
## 10028 0.0000000
## 10029 0.0000000
## 10030 0.0000000
## 10031 0.0000000
## 10032 0.0000000
## 10033 0.0000000
## 10034 0.0000000
## 10035 1.0986123
## 10036 0.0000000
## 10037 1.0986123
## 10038 0.0000000
## 10039 0.0000000
## 10040 1.9459101
## 10041 0.6931472
## 10042 0.0000000
## 10043 1.0986123
## 10044 0.0000000
## 10045 0.0000000
## 10046 0.0000000
## 10047 1.3862944
## 10048 0.0000000
## 10049 0.0000000
## 10050 0.0000000
## 10051 0.0000000
## 10052 0.0000000
## 10053 0.0000000
## 10054 0.0000000
## 10055 0.0000000
## 10056 0.0000000
## 10057 0.0000000
## 10058 0.0000000
## 10059 0.6931472
## 10060 0.0000000
## 10061 0.0000000
## 10062 0.0000000
## 10063 0.0000000
## 10064 0.0000000
## 10065 0.0000000
## 10066 1.3862944
## 10067 0.0000000
## 10068 0.0000000
## 10069 0.0000000
## 10070 0.0000000
## 10071 0.0000000
## 10072 0.0000000
## 10073 0.0000000
## 10074 1.6094379
## 10075 0.0000000
## 10076 0.0000000
## 10077 0.0000000
## 10078 0.0000000
## 10079 0.0000000
## 10080 0.6931472
## 10081 0.0000000
## 10082 0.0000000
## 10083 0.0000000
## 10084 0.0000000
## 10085 0.6931472
## 10086 0.0000000
## 10087 0.0000000
## 10088 1.0986123
## 10089 0.0000000
## 10090 1.6094379
## 10091 1.3862944
## 10092 0.0000000
## 10093 0.6931472
## 10094 0.0000000
## 10095 0.0000000
## 10096 0.0000000
## 10097 0.0000000
## 10098 0.0000000
## 10099 0.0000000
## 10100 0.0000000
## 10101 0.0000000
## 10102 0.6931472
## 10103 0.6931472
## 10104 0.0000000
## 10105 0.0000000
## 10106 0.0000000
## 10107 0.0000000
## 10108 0.0000000
## 10109 1.0986123
## 10110 0.0000000
## 10111 0.0000000
## 10112 0.0000000
## 10113 0.6931472
## 10114 3.8918203
## 10115 0.0000000
## 10116 0.0000000
## 10117 0.0000000
## 10118 0.6931472
## 10119 0.6931472
## 10120 0.0000000
## 10121 3.6635616
## 10122 0.0000000
## 10123 0.0000000
## 10124 0.0000000
## 10125 0.6931472
## 10126 0.6931472
## 10127 0.6931472
## 10128 0.0000000
## 10129 1.0986123
## 10130 0.0000000
## 10131 0.0000000
## 10132 0.0000000
## 10133 1.0986123
## 10134 1.9459101
## 10135 0.0000000
## 10136 0.6931472
## 10137 0.6931472
## 10138 0.0000000
## 10139 0.0000000
## 10140 0.6931472
## 10141 0.0000000
## 10142 0.0000000
## 10143 1.0986123
## 10144 0.0000000
## 10145 0.0000000
## 10146 0.0000000
## 10147 0.0000000
## 10148 0.0000000
## 10149 0.0000000
## 10150 0.0000000
## 10151 0.0000000
## 10152 0.0000000
## 10153 0.0000000
## 10154 0.0000000
## 10155 0.0000000
## 10156 0.0000000
## 10157 0.6931472
## 10158 0.0000000
## 10159 0.0000000
## 10160 0.0000000
## 10161 0.0000000
## 10162 1.0986123
## 10163 0.0000000
## 10164 0.0000000
## 10165 0.0000000
## 10166 0.0000000
## 10167 0.0000000
## 10168 0.0000000
## 10169 1.0986123
## 10170 0.6931472
## 10171 0.0000000
## 10172 0.0000000
## 10173 0.0000000
## 10174 1.3862944
## 10175 0.0000000
## 10176 0.6931472
## 10177 0.0000000
## 10178 0.6931472
## 10179 0.0000000
## 10180 0.6931472
## 10181 0.0000000
## 10182 0.0000000
## 10183 0.0000000
## 10184 0.0000000
## 10185 0.0000000
## 10186 2.4849066
## 10187 0.0000000
## 10188 0.0000000
## 10189 0.0000000
## 10190 0.0000000
## 10191 0.0000000
## 10192 0.0000000
## 10193 0.0000000
## 10194 0.0000000
## 10195 0.6931472
## 10196 0.0000000
## 10197 0.0000000
## 10198 0.0000000
## 10199 0.6931472
## 10200 0.0000000
## 10201 0.0000000
## 10202 0.0000000
## 10203 0.0000000
## 10204 0.0000000
## 10205 0.0000000
## 10206 1.0986123
## 10207 0.0000000
## 10208 0.0000000
## 10209 0.0000000
## 10210 0.0000000
## 10211 0.0000000
## 10212 0.0000000
## 10213 0.6931472
## 10214 0.6931472
## 10215 0.0000000
## 10216 0.0000000
## 10217 0.0000000
## 10218 0.6931472
## 10219 0.6931472
## 10220 0.0000000
## 10221 0.6931472
## 10222 0.0000000
## 10223 0.0000000
## 10224 0.6931472
## 10225 0.0000000
## 10226 0.0000000
## 10227 0.6931472
## 10228 1.6094379
## 10229 0.0000000
## 10230 0.0000000
## 10231 0.0000000
## 10232 0.0000000
## 10233 0.0000000
## 10234 0.0000000
## 10235 0.0000000
## 10236 0.6931472
## 10237 0.0000000
## 10238 0.0000000
## 10239 0.0000000
## 10240 0.0000000
## 10241 0.0000000
## 10242 0.0000000
## 10243 0.6931472
## 10244 1.0986123
## 10245 0.6931472
## 10246 0.6931472
## 10247 0.0000000
## 10248 0.0000000
## 10249 0.6931472
## 10250 0.0000000
## 10251 0.0000000
## 10252 0.0000000
## 10253 0.0000000
## 10254 0.6931472
## 10255 0.0000000
## 10256 0.0000000
## 10257 0.0000000
## 10258 0.0000000
## 10259 0.0000000
## 10260 0.0000000
## 10261 0.0000000
## 10262 0.0000000
## 10263 0.0000000
## 10264 0.6931472
## 10265 0.0000000
## 10266 0.6931472
## 10267 0.0000000
## 10268 0.6931472
## 10269 0.0000000
## 10270 0.0000000
## 10271 0.6931472
## 10272 0.0000000
## 10273 0.0000000
## 10274 0.0000000
## 10275 0.0000000
## 10276 0.0000000
## 10277 0.0000000
## 10278 0.0000000
## 10279 0.6931472
## 10280 0.0000000
## 10281 0.0000000
## 10282 0.0000000
## 10283 0.0000000
## 10284 0.0000000
## 10285 0.0000000
## 10286 0.0000000
## 10287 0.6931472
## 10288 0.6931472
## 10289 0.0000000
## 10290 0.6931472
## 10291 0.6931472
## 10292 0.0000000
## 10293 0.0000000
## 10294 1.0986123
## 10295 0.0000000
## 10296 2.0794415
## 10297 0.0000000
## 10298 0.0000000
## 10299 0.0000000
## 10300 0.0000000
## 10301 1.0986123
## 10302 0.0000000
## 10303 0.6931472
## 10304 0.0000000
## 10305 0.0000000
## 10306 0.0000000
## 10307 0.6931472
## 10308 0.0000000
## 10309 1.0986123
## 10310 0.0000000
## 10311 0.0000000
## 10312 0.6931472
## 10313 0.0000000
## 10314 1.0986123
## 10315 0.0000000
## 10316 0.0000000
## 10317 0.0000000
## 10318 0.0000000
## 10319 0.0000000
## 10320 0.0000000
## 10321 0.0000000
## 10322 0.0000000
## 10323 0.0000000
## 10324 0.0000000
## 10325 0.0000000
## 10326 0.0000000
## 10327 0.0000000
## 10328 1.9459101
## 10329 0.0000000
## 10330 0.0000000
## 10331 0.0000000
## 10332 0.0000000
## 10333 0.6931472
## 10334 0.6931472
## 10335 0.6931472
## 10336 0.0000000
## 10337 0.0000000
## 10338 0.0000000
## 10339 0.0000000
## 10340 0.0000000
## 10341 0.0000000
## 10342 0.6931472
## 10343 0.0000000
## 10344 0.0000000
## 10345 0.0000000
## 10346 1.7917595
## 10347 0.0000000
## 10348 0.6931472
## 10349 0.0000000
## 10350 0.0000000
## 10351 1.0986123
## 10352 0.0000000
## 10353 0.0000000
## 10354 0.6931472
## 10355 4.5643482
## 10356 0.0000000
## 10357 0.0000000
## 10358 0.6931472
## 10359 0.0000000
## 10360 0.6931472
## 10361 0.0000000
## 10362 0.0000000
## 10363 0.0000000
## 10364 0.6931472
## 10365 0.0000000
## 10366 0.0000000
## 10367 0.0000000
## 10368 0.0000000
## 10369 0.0000000
## 10370 4.5643482
## 10371 0.0000000
## 10372 0.0000000
## 10373 0.0000000
## 10374 0.0000000
## 10375 0.0000000
## 10376 0.0000000
## 10377 0.0000000
## 10378 0.0000000
## 10379 0.0000000
## 10380 0.0000000
## 10381 0.0000000
## 10382 0.0000000
## 10383 0.0000000
## 10384 1.3862944
## 10385 0.0000000
## 10386 0.6931472
## 10387 0.0000000
## 10388 0.0000000
## 10389 0.0000000
## 10390 0.0000000
## 10391 0.0000000
## 10392 0.0000000
## 10393 0.0000000
## 10394 0.0000000
## 10395 0.0000000
## 10396 1.0986123
## 10397 0.0000000
## 10398 0.6931472
## 10399 0.0000000
## 10400 0.0000000
## 10401 0.0000000
## 10402 0.6931472
## 10403 0.6931472
## 10404 0.0000000
## 10405 0.0000000
## 10406 0.6931472
## 10407 1.6094379
## 10408 0.0000000
## 10409 1.7917595
## 10410 0.0000000
## 10411 0.0000000
## 10412 0.0000000
## 10413 0.0000000
## 10414 0.0000000
## 10415 0.6931472
## 10416 0.0000000
## 10417 0.0000000
## 10418 0.0000000
## 10419 0.0000000
## 10420 0.6931472
## 10421 1.6094379
## 10422 0.0000000
## 10423 0.0000000
## 10424 0.0000000
## 10425 0.6931472
## 10426 1.6094379
## 10427 1.6094379
## 10428 0.0000000
## 10429 1.6094379
## 10430 0.0000000
## 10431 0.6931472
## 10432 0.6931472
## 10433 0.0000000
## 10434 0.0000000
## 10435 0.6931472
## 10436 0.0000000
## 10437 0.0000000
## 10438 0.6931472
## 10439 1.0986123
## 10440 1.0986123
## 10441 1.0986123
## 10442 0.6931472
## 10443 0.0000000
## 10444 0.0000000
## 10445 0.6931472
## 10446 0.6931472
## 10447 0.0000000
## 10448 0.0000000
## 10449 0.0000000
## 10450 0.0000000
## 10451 0.0000000
## 10452 0.0000000
## 10453 0.0000000
## 10454 0.0000000
## 10455 0.0000000
## 10456 0.0000000
## 10457 0.0000000
## 10458 0.0000000
## 10459 0.0000000
## 10460 0.0000000
## 10461 0.6931472
## 10462 0.0000000
## 10463 0.0000000
## 10464 0.0000000
## 10465 0.0000000
## 10466 0.0000000
## 10467 0.0000000
## 10468 0.0000000
## 10469 1.0986123
## 10470 0.0000000
## 10471 0.0000000
## 10472 0.0000000
## 10473 0.6931472
## 10474 0.0000000
## 10475 2.0794415
## 10476 0.0000000
## 10477 0.0000000
## 10478 0.0000000
## 10479 0.0000000
## 10480 0.6931472
## 10481 0.0000000
## 10482 0.0000000
## 10483 0.0000000
## 10484 0.0000000
## 10485 0.0000000
## 10486 0.0000000
## 10487 0.0000000
## 10488 0.0000000
## 10489 0.0000000
## 10490 0.6931472
## 10491 0.6931472
## 10492 0.0000000
## 10493 0.0000000
## 10494 0.0000000
## 10495 0.0000000
## 10496 0.0000000
## 10497 0.0000000
## 10498 0.0000000
## 10499 0.0000000
## 10500 0.0000000
## 10501 0.0000000
## 10502 0.0000000
## 10503 0.0000000
## 10504 0.0000000
## 10505 0.0000000
## 10506 0.0000000
## 10507 0.6931472
## 10508 0.0000000
## 10509 0.0000000
## 10510 0.0000000
## 10511 0.0000000
## 10512 0.0000000
## 10513 0.0000000
## 10514 0.0000000
## 10515 1.6094379
## 10516 0.0000000
## 10517 1.9459101
## 10518 0.0000000
## 10519 0.0000000
## 10520 0.0000000
## 10521 0.0000000
## 10522 0.6931472
## 10523 0.0000000
## 10524 0.6931472
## 10525 0.0000000
## 10526 0.6931472
## 10527 0.0000000
## 10528 0.0000000
## 10529 0.0000000
## 10530 0.0000000
## 10531 0.0000000
## 10532 0.0000000
## 10533 0.0000000
## 10534 0.0000000
## 10535 0.0000000
## 10536 0.0000000
## 10537 0.0000000
## 10538 1.3862944
## 10539 0.0000000
## 10540 0.0000000
## 10541 0.0000000
## 10542 0.0000000
## 10543 0.0000000
## 10544 0.0000000
## 10545 0.0000000
## 10546 0.6931472
## 10547 0.0000000
## 10548 0.0000000
## 10549 0.0000000
## 10550 0.0000000
## 10551 1.3862944
## 10552 0.0000000
## 10553 1.3862944
## 10554 1.3862944
## 10555 4.5643482
## 10556 1.0986123
## 10557 0.0000000
## 10558 0.0000000
## 10559 0.0000000
## 10560 0.0000000
## 10561 0.0000000
## 10562 0.0000000
## 10563 1.0986123
## 10564 0.0000000
## 10565 0.0000000
## 10566 0.0000000
## 10567 0.6931472
## 10568 0.0000000
## 10569 0.6931472
## 10570 0.0000000
## 10571 0.0000000
## 10572 0.6931472
## 10573 0.0000000
## 10574 2.4849066
## 10575 2.4849066
## 10576 0.0000000
## 10577 1.0986123
## 10578 0.0000000
## 10579 0.6931472
## 10580 0.0000000
## 10581 0.0000000
## 10582 1.0986123
## 10583 0.0000000
## 10584 0.6931472
## 10585 0.0000000
## 10586 0.0000000
## 10587 0.0000000
## 10588 0.0000000
## 10589 0.0000000
## 10590 0.0000000
## 10591 0.0000000
## 10592 0.0000000
## 10593 0.0000000
## 10594 0.0000000
## 10595 0.0000000
## 10596 0.0000000
## 10597 0.6931472
## 10598 0.0000000
## 10599 0.0000000
## 10600 0.0000000
## 10601 0.6931472
## 10602 1.0986123
## 10603 1.3862944
## 10604 0.0000000
## 10605 0.0000000
## 10606 0.0000000
## 10607 0.0000000
## 10608 0.0000000
## 10609 0.0000000
## 10610 0.0000000
## 10611 0.6931472
## 10612 0.0000000
## 10613 0.0000000
## 10614 0.0000000
## 10615 1.0986123
## 10616 0.0000000
## 10617 1.3862944
## 10618 1.3862944
## 10619 0.0000000
## 10620 0.0000000
## 10621 0.0000000
## 10622 0.0000000
## 10623 0.0000000
## 10624 0.6931472
## 10625 0.0000000
## 10626 0.6931472
## 10627 0.0000000
## 10628 0.6931472
## 10629 0.0000000
## 10630 0.0000000
## 10631 0.0000000
## 10632 0.0000000
## 10633 0.0000000
## 10634 0.0000000
## 10635 0.0000000
## 10636 0.0000000
## 10637 0.6931472
## 10638 0.0000000
## 10639 1.0986123
## 10640 0.0000000
## 10641 0.0000000
## 10642 0.0000000
## 10643 0.0000000
## 10644 0.0000000
## 10645 1.0986123
## 10646 0.0000000
## 10647 0.0000000
## 10648 1.0986123
## 10649 0.6931472
## 10650 0.0000000
## 10651 0.6931472
## 10652 0.0000000
## 10653 0.0000000
## 10654 1.3862944
## 10655 0.0000000
## 10656 0.0000000
## 10657 0.0000000
## 10658 0.0000000
## 10659 0.6931472
## 10660 0.0000000
## 10661 0.0000000
## 10662 0.0000000
## 10663 0.0000000
## 10664 0.0000000
## 10665 0.0000000
## 10666 0.0000000
## 10667 0.0000000
## 10668 0.0000000
## 10669 0.0000000
## 10670 0.6931472
## 10671 0.0000000
## 10672 0.6931472
## 10673 0.0000000
## 10674 0.0000000
## 10675 0.0000000
## 10676 0.0000000
## 10677 0.0000000
## 10678 0.0000000
## 10679 0.0000000
## 10680 0.0000000
## 10681 1.0986123
## 10682 0.0000000
## 10683 0.0000000
## 10684 0.6931472
## 10685 0.6931472
## 10686 0.6931472
## 10687 0.6931472
## 10688 0.0000000
## 10689 0.0000000
## 10690 0.0000000
## 10691 0.0000000
## 10692 0.0000000
## 10693 0.0000000
## 10694 4.5643482
## 10695 0.0000000
## 10696 1.0986123
## 10697 0.0000000
## 10698 0.0000000
## 10699 0.0000000
## 10700 0.0000000
## 10701 0.6931472
## 10702 0.6931472
## 10703 0.0000000
## 10704 0.0000000
## 10705 0.0000000
## 10706 0.0000000
## 10707 0.0000000
## 10708 0.0000000
## 10709 0.0000000
## 10710 0.0000000
## 10711 0.6931472
## 10712 0.6931472
## 10713 0.0000000
## 10714 0.6931472
## 10715 0.0000000
## 10716 0.6931472
## 10717 0.0000000
## 10718 1.3862944
## 10719 0.0000000
## 10720 0.0000000
## 10721 2.8903718
## 10722 0.0000000
## 10723 0.0000000
## 10724 0.0000000
## 10725 0.0000000
## 10726 1.3862944
## 10727 1.3862944
## 10728 1.3862944
## 10729 0.0000000
## 10730 0.0000000
## 10731 0.0000000
## 10732 0.6931472
## 10733 0.0000000
## 10734 0.0000000
## 10735 0.6931472
## 10736 0.6931472
## 10737 0.0000000
## 10738 0.6931472
## 10739 0.0000000
## 10740 0.0000000
## 10741 0.0000000
## 10742 0.0000000
## 10743 0.0000000
## 10744 0.0000000
## 10745 0.0000000
## 10746 0.0000000
## 10747 0.0000000
## 10748 0.6931472
## 10749 0.0000000
## 10750 0.6931472
## 10751 0.0000000
## 10752 0.0000000
## 10753 0.0000000
## 10754 0.0000000
## 10755 0.0000000
## 10756 0.0000000
## 10757 0.0000000
## 10758 0.0000000
## 10759 0.0000000
## 10760 0.0000000
## 10761 1.0986123
## 10762 0.0000000
## 10763 0.0000000
## 10764 0.0000000
## 10765 0.0000000
## 10766 0.0000000
## 10767 0.0000000
## 10768 0.0000000
## 10769 0.0000000
## 10770 0.0000000
## 10771 1.3862944
## 10772 0.0000000
## 10773 0.0000000
## 10774 0.0000000
## 10775 0.0000000
## 10776 0.0000000
## 10777 1.0986123
## 10778 0.0000000
## 10779 0.6931472
## 10780 0.6931472
## 10781 0.0000000
## 10782 0.0000000
## 10783 4.5643482
## 10784 0.0000000
## 10785 0.0000000
## 10786 0.0000000
## 10787 0.6931472
## 10788 0.0000000
## 10789 0.0000000
## 10790 0.0000000
## 10791 0.0000000
## 10792 0.0000000
## 10793 0.0000000
## 10794 0.0000000
## 10795 0.0000000
## 10796 0.6931472
## 10797 0.0000000
## 10798 0.0000000
## 10799 0.0000000
## 10800 1.6094379
## 10801 0.0000000
## 10802 1.6094379
## 10803 1.6094379
## 10804 0.0000000
## 10805 3.0445224
## 10806 0.0000000
## 10807 0.0000000
## 10808 0.0000000
## 10809 0.0000000
## 10810 0.6931472
## 10811 1.0986123
## 10812 0.0000000
## 10813 0.0000000
## 10814 0.0000000
## 10815 0.0000000
## 10816 0.0000000
## 10817 0.0000000
## 10818 0.0000000
## 10819 0.0000000
## 10820 0.0000000
## 10821 0.0000000
## 10822 0.0000000
## 10823 0.0000000
## 10824 0.0000000
## 10825 0.0000000
## 10826 0.0000000
## 10827 0.0000000
## 10828 0.0000000
## 10829 0.0000000
## 10830 0.0000000
## 10831 0.0000000
## 10832 0.0000000
## 10833 0.0000000
## 10834 0.6931472
## 10835 1.0986123
## 10836 0.0000000
## 10837 0.6931472
## 10838 0.6931472
## 10839 0.0000000
## 10840 0.0000000
## 10841 0.0000000
## 10842 0.0000000
## 10843 1.6094379
## 10844 0.6931472
## 10845 0.0000000
## 10846 0.6931472
## 10847 0.0000000
## 10848 0.0000000
## 10849 0.0000000
## 10850 0.0000000
## 10851 1.3862944
## 10852 0.0000000
## 10853 0.0000000
## 10854 0.0000000
## 10855 0.0000000
## 10856 0.0000000
## 10857 0.0000000
## 10858 0.0000000
## 10859 0.0000000
## 10860 0.0000000
## 10861 1.3862944
## 10862 0.0000000
## 10863 0.0000000
## 10864 0.0000000
## 10865 0.0000000
## 10866 0.0000000
## 10867 0.0000000
## 10868 0.0000000
## 10869 1.3862944
## 10870 1.3862944
## 10871 0.0000000
## 10872 1.0986123
## 10873 0.0000000
## 10874 1.0986123
## 10875 1.0986123
## 10876 0.0000000
## 10877 0.0000000
## 10878 0.6931472
## 10879 0.0000000
## 10880 0.0000000
## 10881 0.6931472
## 10882 0.0000000
## 10883 0.0000000
## 10884 1.0986123
## 10885 4.5643482
## 10886 0.6931472
## 10887 0.0000000
## 10888 4.5643482
## 10889 0.0000000
## 10890 0.0000000
## 10891 0.0000000
## 10892 0.0000000
## 10893 0.0000000
## 10894 0.6931472
## 10895 0.0000000
## 10896 0.0000000
## 10897 0.0000000
## 10898 0.0000000
## 10899 0.6931472
## 10900 0.0000000
## 10901 0.6931472
## 10902 0.0000000
## 10903 0.0000000
## 10904 0.0000000
## 10905 0.0000000
## 10906 0.0000000
## 10907 0.0000000
## 10908 1.0986123
## 10909 1.6094379
## 10910 0.0000000
## 10911 0.6931472
## 10912 1.6094379
## 10913 0.0000000
## 10914 0.0000000
## 10915 0.0000000
## 10916 4.5643482
## 10917 0.0000000
## 10918 0.0000000
## 10919 3.9512437
## 10920 0.0000000
## 10921 0.0000000
## 10922 0.0000000
## 10923 0.0000000
## 10924 0.0000000
## 10925 0.0000000
## 10926 0.0000000
## 10927 0.0000000
## 10928 0.0000000
## 10929 0.0000000
## 10930 0.0000000
## 10931 0.0000000
## 10932 0.0000000
## 10933 0.0000000
## 10934 0.6931472
## 10935 0.0000000
## 10936 1.3862944
## 10937 4.5643482
## 10938 0.0000000
## 10939 0.0000000
## 10940 4.5643482
## 10941 0.0000000
## 10942 0.0000000
## 10943 0.0000000
## 10944 0.6931472
## 10945 0.0000000
## 10946 0.0000000
## 10947 0.0000000
## 10948 0.0000000
## 10949 0.6931472
## 10950 0.0000000
## 10951 0.0000000
## 10952 0.0000000
## 10953 0.0000000
## 10954 0.0000000
## 10955 0.0000000
## 10956 0.0000000
## 10957 0.0000000
## 10958 0.0000000
## 10959 0.6931472
## 10960 0.0000000
## 10961 0.0000000
## 10962 0.6931472
## 10963 1.9459101
## 10964 0.0000000
## 10965 0.0000000
## 10966 0.0000000
## 10967 0.0000000
## 10968 0.0000000
## 10969 1.0986123
## 10970 0.0000000
## 10971 1.0986123
## 10972 1.0986123
## 10973 0.6931472
## 10974 0.0000000
## 10975 0.0000000
## 10976 0.0000000
## 10977 0.6931472
## 10978 0.0000000
## 10979 0.6931472
## 10980 0.0000000
## 10981 0.0000000
## 10982 0.6931472
## 10983 0.0000000
## 10984 0.0000000
## 10985 0.0000000
## 10986 0.0000000
## 10987 0.0000000
## 10988 0.0000000
## 10989 0.6931472
## 10990 0.6931472
## 10991 0.0000000
## 10992 0.0000000
## 10993 0.0000000
## 10994 1.0986123
## 10995 0.0000000
## 10996 0.6931472
## 10997 0.0000000
## 10998 0.0000000
## 10999 0.6931472
## 11000 0.0000000
## 11001 0.0000000
## 11002 0.0000000
## 11003 0.0000000
## 11004 0.0000000
## 11005 0.0000000
## 11006 4.5643482
## 11007 0.0000000
## 11008 0.0000000
## 11009 0.0000000
## 11010 0.0000000
## 11011 0.0000000
## 11012 0.0000000
## 11013 0.0000000
## 11014 0.6931472
## 11015 0.0000000
## 11016 4.7957905
## 11017 0.0000000
## 11018 0.0000000
## 11019 0.0000000
## 11020 4.7957905
## 11021 1.0986123
## 11022 0.0000000
## 11023 0.0000000
## 11024 0.0000000
## 11025 0.0000000
## 11026 0.0000000
## 11027 0.0000000
## 11028 1.0986123
## 11029 1.6094379
## 11030 0.0000000
## 11031 0.0000000
## 11032 0.0000000
## 11033 0.0000000
## 11034 0.0000000
## 11035 0.0000000
## 11036 0.6931472
## 11037 0.0000000
## 11038 0.0000000
## 11039 4.7957905
## 11040 0.6931472
## 11041 1.3862944
## 11042 0.0000000
## 11043 1.0986123
## 11044 0.0000000
## 11045 4.7957905
## 11046 0.0000000
## 11047 0.0000000
## 11048 0.6931472
## 11049 0.0000000
## 11050 4.7957905
## 11051 1.0986123
## 11052 0.0000000
## 11053 4.7957905
## 11054 0.0000000
## 11055 0.0000000
## 11056 0.0000000
## 11057 0.0000000
## 11058 0.0000000
## 11059 0.0000000
## 11060 1.3862944
## 11061 0.0000000
## 11062 0.6931472
## 11063 0.0000000
## 11064 1.3862944
## 11065 1.6094379
## 11066 3.4339872
## 11067 0.0000000
## 11068 0.0000000
## 11069 0.0000000
## 11070 1.0986123
## 11071 0.0000000
## 11072 0.0000000
## 11073 0.0000000
## 11074 1.0986123
## 11075 0.0000000
## 11076 0.0000000
## 11077 0.0000000
## 11078 0.0000000
## 11079 0.0000000
## 11080 0.0000000
## 11081 0.0000000
## 11082 0.0000000
## 11083 0.0000000
## 11084 0.0000000
## 11085 0.0000000
## 11086 1.0986123
## 11087 0.0000000
## 11088 0.0000000
## 11089 0.0000000
## 11090 0.0000000
## 11091 0.0000000
## 11092 0.6931472
## 11093 0.0000000
## 11094 0.0000000
## 11095 0.6931472
## 11096 0.6931472
## 11097 1.0986123
## 11098 0.0000000
## 11099 0.0000000
## 11100 0.0000000
## 11101 0.6931472
## 11102 0.6931472
## 11103 0.6931472
## 11104 0.0000000
## 11105 0.0000000
## 11106 0.0000000
## 11107 0.0000000
## 11108 0.0000000
## 11109 0.0000000
## 11110 0.0000000
## 11111 0.0000000
##  [ reached 'max' / getOption("max.print") -- omitted 27716 rows ]
log.nyc.independent <- select(log.nyc.independent, -c("minimum_nights", "number_of_reviews", "calculated_host_listings_count"))
invisible(log.nyc.independent)

Examining VIFs of Log-Log Model

log.full.model<-lm(lprice~.,data=log.nyc.independent)  # . means all variable not mpg
vif(log.full.model)[,3]^2
## neighbourhood_group           room_type            lreviews 
##            1.011796            1.045410            1.040906 
##             lnights           llistings 
##            1.149084            1.083175
alias(lm(lprice~.,data=log.nyc.independent))
## Model :
## lprice ~ neighbourhood_group + room_type + lreviews + lnights + 
##     llistings

Reviewing Linearity with Logged Independent and Dependent Variables

  • Curved relationships with the numeric variables
    • Could require a quadratic or logarithmic transformation
log.nyc.independent  %>% pairs() #[Add color]

#%>% keep(is.numeric)

par(mfrow=c(2,2))
plot(log.full.model)

Continuous Variable Manipulation

  • Since we are seeing large clouds of data but no linear trend, we are going to try binning the data to see if it will assist us in determining if there is a relationship between the continuous variables and log price

#```{r} #data(nyc4) #nyc4\(reviewsBin <- var.bin(nyc4\)number_of_reviews, bins = 50) #nyc4

#nyc4 %>% keep(is.numeric) %>% pairs() #[Add color]

#par(mfrow=c(2,2)) #plot(log.full.model) #```